Uploaded image for project: 'Cubby'
  1. Cubby
  2. CUBBY-159

Redirect/ForwardでMapを使用せずに、簡単にパラメータを追加できるようにしました

XMLWordPrintable

    • Type: Icon: Improvement Improvement
    • Resolution: Fixed
    • Priority: Icon: Major Major
    • 1.1.0-rc2
    • Affects Version/s: None
    • Component/s: Core
    • None

      現在だとパラメータを追加するのに以下のようなコードになります。

       
      Map<String, String[]> params = new HashMap<String, String[]>();
      params.put("name", new String[] {this.name });
      return new Redirect(IndexAction.class, "index", params);
      

      もっと簡単にできるようにしたいので、以下のようなメソッドを追加するのはどうでしょうか?

       
      return new Redirect(IndexAction.class, "index").param("name", this.name);
      

            Assignee:
            agata agata
            Reporter:
            agata agata
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved: