Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java的web.xml中是否有可能将所有子域重定向到一个servlet?
例如:
<url-pattern>*.</url-pattern>
你绝对可以这样做,但我认为你想使用*.ext或*.*如下定义你的 URL 模式:
*.ext
*.*
<url-pattern>*.*</url-pattern>
这也被一些流行的 MVC 框架使用,例如strutsUL 模式
struts
<servlet-mapping> <servlet-name>action</servlet-name> <url-pattern>*.do</url-pattern> </servlet-mapping>
映射到 Struts 控制器 servlet。