获得exception:没有定义名为“springSecurityFilterChain”的bean

我从参考资料中学习弹簧安全。 版本3.1.2.RELEASE。 正如我所说的,我已经configurationsecurity:http标签这样

安全的context.xml

 <security:http auto-config="true"> <security:intercept-url pattern="/**" access="ROLE_USER"/> </security:http> 

web.xml中

 <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath*:*-context.xml</param-value> </context-param> <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> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>security</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>security</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> 

安全servlet.xml中

 <context:component-scan base-package="com.pokuri.security.mvc.controllers"/> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="prefix" value="/WEB-INF/page/"/> <property name="suffix" value=".jsp"/> </bean> 

但是,当我启动应用程序时,我得到了这个exception。 如果我删除安全configuration我的springweb应用程序工作正常。 我在stackoverflow中经历了同样的问题。 但没有运气。

我认为你的问题的原因可能是因为你的XML安全configuration文件没有加载,当你启动你的Web应用程序。

要解决这个问题,你应该在web.xml中指定所有的XMLconfiguration文件:

 <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/spring-security.xml, /WEB-INF/applicationContext.xml</param-value> </context-param> 

如果你的configuration文件在classpath中(不是WEB-INF文件夹或它的子文件夹),那么你可以用这种方式指定configuration文件列表;

 ... <param-value> classpath:applicationContext.xml, classpath:spitter-security.xml </param-value> ... 

还需要添加特殊的侦听器来加载你的configuration文件:

 <listener> <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class> </listener> 

Spring刚才问我在applicationContext.xml中添加了bean定义:

 <bean id="springSecurityFilterChain" class="org.springframework.web.filter.DelegatingFilterProxy"/> 

添加这个你的web.xml

 <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/root-context.xml, /WEB-INF/spring-security.xml</param-value> </context-param> <!-- Creates the Spring Container shared by all Servlets and Filters --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <!-- filter declaration for Spring Security --> <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>