Error creating bean with name '***' defined in URL

我在spring-mvc.xml中配置了自动装配bean,然后在spring-context-shiro.xml中使用这些bean。

在启动时报错:

Error creating bean with name 'shiroFilter' defined in URL [file:spring-context-shiro.xml]: Cannot resolve reference to bean 'securityManager' while setting bean property 'securityManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'securityManager' defined in URL [file:spring-context-shiro.xml]: Cannot resolve reference to bean 'systemAuthorizingRealm' while setting bean property 'realm'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'systemAuthorizingRealm' available

根据web.xml的配置:

	
		contextConfigLocation
		
			classpath*:/spring-mybatis*.xml
			classpath*:/spring-context-shiro.xml
		
	
	
		org.springframework.web.context.ContextLoaderListener
	

	
		springMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath*:/spring-mvc*.xml
		
		1
	
	
		springMVC
		/
	

spring-mvc.xml与spring-context-shiro.xml从属于不同容器。

所以,虽然在spring-mvc.xml中配置了自动扫描注入,但在spring-context-shiro.xml这个容器中,这些bean name是不存在的。

在spring-context-shiro.xml配置对需要使用的包com.beta.zjw.shiro自动扫描注入:

问题解决。

 

 

我们一般使用这种方法获取配置文件:

ClassPathXmlApplicationContext re = new ClassPathXmlApplicationContext("applicationContext.xml");

而由spring自动装配的xml文件,根据web.xml的配置:

contextConfigLocation

虽然spring-mybatis.xml、spring-context-shiro.xml和spring-mvc.xml配置的param-name是同样的名字,

但spring-mvc.xml的param-name属于servlet类springMVC:

springMVC

所以在springMVC以外,是拿不到在spring-mvc.xml中配置的自动注入的。

 

你可能感兴趣的:(问题解决)