spring security5.03配置说明
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
spring-security-3.0.3. 与Spring3.0.3 集成配置配置说明
1. web.xml配置
xmlns:web="/xml/ns/javaee/web-app_2_5.xsd" 04 xsi:schemaLocation="/xml/ns/javaee /xml/ns/javaee/web-app_2_5.xsd" 05 id="WebApp_ID" version="2.5"> /WEB-INF/applicationContext-*.xml org.springframework.web.context.ContextLoaderListener org.springframework.web.filter.DelegatingFilterProxy
说明:首选加载配置文件,然后添加spring 和spring security 监听器
添加spring security过滤器这个过滤器要放到所有的过滤器之前
2. applicationContext-security.xml 配置
xmlns:beans="/schema/beans" xmlns:xsi="/2001/XMLSchema-instance" xsi:schemaLocation="/schema/beans /schema/beans/spring-beans-3.0.xsd /schema/security /schema/security/spring-security-3.0.xs d"> access-denied-page="/access-denied.jsp" entry-point-ref="authenticationProcessingFilterEntryPoint">