spring shiro整合時自動注入的問題

  • 2019 年 12 月 7 日
  • 筆記

 spring mvc和shiro進行整合時,我採用的是註解的方式,也就是@Autowired,發現service服務無法再自定義的realm中進行注入,會出現以下錯誤。 Error creating bean with name 'shiroFilter' defined in class path resource [spring-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'……

類似於這種錯誤,這是springmvc配置文件 優先順序不夠的原因造成,需要在web.xml文件中作調整:

<context-param>      <param-name>contextConfigLocation</param-name>  	<param-value>              classpath:config/spring.xml,              classpath:config/spring-shiro.xml          </param-value>  </context-param>

因為shiro處於filter級別,過濾的時候spring中的bean還沒有被使用出來。寫了這配置以後,如果還出錯,則建議檢查applicationContext.xml中的掃描包看是否被掃進來,還有就是自定義中的realm在spring-shiro.xml中是否配置正確。