<!-- 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
时间: 2024-11-01 01:20:54