码迷,mamicode.com
首页 > Web开发 > 详细

当shiro做成动态URL管理时出现循环注入BeanCurrentlyInCreationException的问题解决方法

时间:2016-12-30 10:12:36      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:ati   span   ram   framework   work   web   nts   abs   解决   

<!-- Shiro的Web过滤器 -->
    <bean id="shiroFilter" class="org.apache.shiro.spring.web.ShiroFilterFactoryBean">
        <property name="securityManager" ref="securityManager"/>

    </bean>

    <bean class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
        <property name="targetObject" ref="shiroFilter"/>
        <property name="targetMethod" value="setFilterChainResolver"/>
        <property name="arguments" ref="filterChainResolver"/>
    </bean>

改为

@Bean
    public ShiroFilterFactoryBean shiroFilterFactoryBean() throws Exception{
        ShiroFilterFactoryBean bean = new ShiroFilterFactoryBean();
        bean.setSecurityManager(securityManager());
        AbstractShiroFilter shiroFilter = (AbstractShiroFilter)bean.getObject();
        shiroFilter.setFilterChainResolver(pathMatchingFilterChainResolver());
        return bean;
    }

就可以解决,具体到底哪里的错我也没搞懂。

spring集成shiro的具体方案,请看开涛大神的博客:http://jinnianshilongnian.iteye.com/blog/2040929

当shiro做成动态URL管理时出现循环注入BeanCurrentlyInCreationException的问题解决方法

标签:ati   span   ram   framework   work   web   nts   abs   解决   

原文地址:http://www.cnblogs.com/jianguang/p/6235748.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!