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

@Pathで指定したURIの優先順位を明確にする

XMLWordPrintable

    • Type: Icon: Task Task
    • Resolution: Fixed
    • Priority: Icon: Major Major
    • 1.0.0-RC2
    • Affects Version/s: 1.0.0-RC1
    • Component/s: Core
    • None

      @Pathで指定したURIの優先順位を明確にします。

      {id}

      のようにパス埋め込まれたパラメータが少ない方からマッチングしていきます。

      理由:

      @Path("/foo/{identifier}")
      public ActionResult method1() {
      }
      
      @Path("/foo/execute")
      public ActionResult method2() {
      }
      

      のようなパスが定義された場合、method1の正規表現が"/foo/[a-zA-Z0-9]+"となって"/foo/execute"でアクセスしてもmethod1が実行される可能性があります。(現状では登録された順番にマッチングするので、どちらが呼ばれるか特定できない)

      なので、パス埋め込まれたパラメータが少ない方からマッチングしていくことで少しでもパスが不安定になることを避けたいと思います。

      "/foo/

      {identifier}

      "と"/foo/

      {name}

      "なんかだと、区別がつかないのでこれはムリ。

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

              Created:
              Updated:
              Resolved: