您好,登錄后才能下訂單哦!
小編給大家分享一下shiro中部分SpringCache失效怎么辦,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、問題拋出
在做Springboot和shiro集成時,發現一個嚴重的問題。部分service的緩存和事務失效,debug代碼時,發現這些有問題的service實例都不是代理生成的,所以事務和緩存就失效了(事務和緩存依賴代理類實現)。繼續查問題,發現這些有問題的service全部被shiro的realm所依賴,所以懷疑是shiro影響了
所以做一下測試:
shiro中用到的ResourceService
public class LocalRealmService extends RealmService { @Autowired private ResourceService resourceService; ... }
controller也調用ResourceService
@RestController @RequestMapping(value = "/test") public class CacheController { private Logger logger = LoggerFactory.getLogger(this.getClass()); @Autowired private ResourceService resourceService; }
結果發現resourceService的實例如圖:
發現問題:resourceService的實例不是代理即緩存注解和事務全部生效(緩存和事務都是代理完成的)
當我把resourceService從realm依賴中刪除時,在controller引用時resourceService的實例就是“代理”即緩存和事務生效
結論:只要被shiro的realm所依賴的service,代理會全部失效(暫時沒擼源碼,還不知原理,知道的童鞋可以說下,謝了)
2、解決的方案
常用的解決方式有三種:
第一種:這是網上比較多的
就是realm中不要依賴service,依賴dao
第二種:在依賴的service上添加@Lazy注解
延遲加載,就是在實例化shiro的realm時,不去實例化service的bean,等到用的時候再從spring容器中去取對應的Bean
public class LocalRealmService extends RealmService { @Lazy @Autowired private ResourceService resourceService; ... }
這種解決方案讓我感覺到:這里是不是存在多個上下文,或者不是spring?這里有待后續考證。。。
第三種:shiro在實例化securityManager時,先不設置realm,等到容器加載完再設置
這種方式與第二種類似,只不過無需在每個service屬性上增加@Lazy注解
SecurityMangaerd的實例化
/** * 注釋掉realm */ @Bean("securityManager") public DefaultWebSecurityManager securityManager(/*@Qualifier("realm") BootRealm BootRealm,*/ SessionManager sessionManager, CacheManager shiroCacheManager) { DefaultWebSecurityManager manager = new DefaultWebSecurityManager(); //注釋掉 //manager.setRealm(hyBootRealm); }
容器加載完設置realm:這里有多重方案,主要列舉兩種
I、利用spring監聽
import org.springframework.context.ApplicationEvent; import org.springframework.context.ApplicationListener; @Component public class ShiroRealmListener implements ApplicationListener { @Autowired private DefaultWebSecurityManager securityManager; @Autowired private HyBootRealm realm; @Override public void onApplicationEvent(ApplicationEvent event) { securityManager.setRealm(realm); } }
II、利用springboot的ApplicationRunner
import com.chyjr.hyboot.security.shiro.realm.HyBootRealm; import org.apache.shiro.web.mgt.DefaultWebSecurityManager; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; public class ShiroRealmRunner implements ApplicationRunner { @Autowired private DefaultWebSecurityManager securityManager; @Autowired private HyBootRealm realm; @Override public void run(ApplicationArguments args) throws Exception { securityManager.setRealm(realm); } }
注意:ShiroRealmRunner必須是spring的Bean,所以在配置管理類中要添加:
@Bean public ShiroRealmRunner shiroRealmRunner(){ return new ShiroRealmRunner(); }
以上是“shiro中部分SpringCache失效怎么辦”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。