我們已經從Spring security 3.0.5遷移到3.2.5。我們使用下面的代碼來添加權限。Spring Security add Authorities
UserDetails loadedUser = new UserDetails();
loadedUser.getAuthorities().add(new GrantedAuthorityImpl("ROLE_ADMIN"));
下面這段代碼是給下面的錯誤
Add方法(捕獲#1嗎?擴展的GrantedAuthority)在Collection類型是不適用的參數(的GrantedAuthorityImpl)
可以將某些一個請幫我解決這個問題?
嗨@kuhajevan我試過這個,但它給出了同樣的錯誤。 – Hemal