web.xml 配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.xml 配置相关的知识,希望对你有一定的参考价值。

1. 配置 servlet

<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>test.HelloWorldHttpServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>hello</servlet-name>
<url-pattern>/helloWorld</url-pattern>
</servlet-mapping>

 

2.配置 Filter

<filter>
<filter-name>authFilter</filter-name>
<filter-class>test.LoginFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>authFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>

 

3. 配置异常、错误

<error-page>
<error-code>404</error-code>
<location>/error.jsp</location>
</error-page>


<error-page>
<exception-type>javax.servlet.ServletException</exception-type>
<location>/error.jsp</location>
</error-page>

 























以上是关于web.xml 配置的主要内容,如果未能解决你的问题,请参考以下文章

web.xml 文件配置01

web.xml配置文件

Web.XML 配置学习

web.xml

web.xml的作用及基本配置

十web.xml