<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-security.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
相关文章
- 10-06.net core web api 与httpclient发送和接收文件及数据【转载】
- 10-06Web for pentester_writeup之Directory traversal篇
- 10-06arcgis server "System.Web.Services.Protocols.SoapException: Error processing server request".
- 10-06什么是对象,如何穿件对象,在web前端开发起到什么作用
- 10-06Web开发(四)js
- 10-06GitHub标星13,web开发发展前景
- 10-06FastAPI 学习之路(一)fastapi--高性能web开发框架
- 10-06WEB框架对比——Django、Flask、FastAPI
- 10-06Web 开发框架,你用 Django,Flask,还是 FastAPI 【转】
- 10-06web开发调试神器——fiddler的使用