Spring IoC控制反转创建实例写一个配置文件beans.xml,配置文件的约束可以访问:完整链接:https://repo.spring.io/libs-release-local/org/springframework/spring/4.1.3.RELEASE/spring-framework-4.1.3.RELEASE-docs.zip!/spring-framework-reference/html/xsd-config.html短链:http://uee.me/aWWFA…
spring security是通过一个过滤器链来保护你的web应用安全.在spring security中,该过滤链的名称为springSecurityFilterChain,类型为FilterChainProxy.并通过DelegatingFilterProxy代理调用.对于这一点,这样说可能更好理解:springSecurityFilterChain是spring中的bean,而过滤器要想起作用必须配置在web.xml中.为了使springSecurityFilterChain起到拦截作用…