5
サーブレットマッピングURLパターンの/と/ *の違い
おなじみのコード: <servlet-mapping> <servlet-name>main</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>main</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> 私の理解は、に/*マッピングされるということhttp://host:port/context/*です。 いかが/ですか?それは確かにhttp://host:port/contextルートのみにマップされません。実際、それは受け入れますhttp://host:port/context/helloが、拒否しhttp://host:port/context/hello.jspます。 誰がどのようにhttp://host:port/context/helloマッピングされるか説明できますか?