create servlet url-pattern with “/”

泄露秘密 提交于 2019-12-02 01:15:39
mico

Yes, like @DwB pointed, '/' context is problematic URL pattern and it causes your problem.

Use

<servlet-mapping>
    <servlet-name>MainServlet</servlet-name>
    <url-pattern></url-pattern>
</servlet-mapping>

instead. It is "the servlet 3.0 way" to do this.

Sources

[1] http://www.coderanch.com/t/366340/Servlets/java/servlet-mapping-url-pattern

[2] How can I map a "root" Servlet so that other scripts are still runnable?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!