请说明一下web.xml文件中可以配置哪些内容?
生活随笔
收集整理的這篇文章主要介紹了
请说明一下web.xml文件中可以配置哪些内容?
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
● 請(qǐng)說(shuō)明一下web.xml文件中可以配置哪些內(nèi)容?
web.xml用于配置Web應(yīng)用的相關(guān)信息,如:監(jiān)聽(tīng)器(listener)、過(guò)濾器(filter)、 Servlet、相關(guān)參數(shù)、會(huì)話(huà)超時(shí)時(shí)間、安全驗(yàn)證方式、錯(cuò)誤頁(yè)面等,下面是一些開(kāi)發(fā)中常見(jiàn)的配置:
①配置Spring上下文加載監(jiān)聽(tīng)器加載Spring配置文件并創(chuàng)建IOC容器:
<context-param><param-name>contextConfigLocation</param-name><param-value>classpath:applicationContext.xml</param-value> </context-param><listener><listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>②配置Spring的OpenSessionInView過(guò)濾器來(lái)解決延遲加載和Hibernate會(huì)話(huà)關(guān)閉的矛盾:
<filter><filter-name>openSessionInView</filter-name><filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class> </filter><filter-mapping><filter-name>openSessionInView</filter-name><url-pattern>/*</url-pattern> </filter-mapping>③配置會(huì)話(huà)超時(shí)時(shí)間為10分鐘:
<session-config><session-timeout>10</session-timeout> </session-config>④配置404和Exception的錯(cuò)誤頁(yè)面:
<error-page><error-code>404</error-code><location>/error.jsp</location> </error-page><error-page><exception-type>java.lang.Exception</exception-type><location>/error.jsp</location> </error-page>⑤配置安全認(rèn)證方式:
<security-constraint><web-resource-collection><web-resource-name>ProtectedArea</web-resource-name><url-pattern>/admin/*</url-pattern><http-method>GET</http-method><http-method>POST</http-method></web-resource-collection><auth-constraint><role-name>admin</role-name></auth-constraint> </security-constraint><login-config><auth-method>BASIC</auth-method> </login-config><security-role><role-name>admin</role-name> </security-role>總結(jié)
以上是生活随笔為你收集整理的请说明一下web.xml文件中可以配置哪些内容?的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: jvm最大内存限制多少?
- 下一篇: redis List的用途及常用命令