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

我在spring-mvc.xml中配置了<context:component-scan base-package="com.beta.zjw"/>自动装配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的配置:

	<context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>
			classpath*:/spring-mybatis*.xml
			classpath*:/spring-context-shiro.xml
		</param-value>
	</context-param>
	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>

	<servlet>
		<servlet-name>springMVC</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>classpath*:/spring-mvc*.xml</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>springMVC</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>

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

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

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

<context:component-scan base-package="com.beat.zjw.shiro"/>

问题解决。

 

 

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

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

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

<param-name>contextConfigLocation</param-name>

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

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

<servlet-name>springMVC</servlet-name>

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

 

  • 3
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值