<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
在UserDetailsService的loadUserByUsername方法裡去構建當前登陸的使用者時,你可以選擇兩種授權方法,即角色授權和許可權授權,對應使用的程式碼是hasRole和hasAuthority,而這兩種方式在設定時也有不同,下面介紹一下:
@Component public class MyUserDetailService implements UserDetailsService { @Autowired private PasswordEncoder passwordEncoder; @Override public UserDetails loadUserByUsername(String name) throws UsernameNotFoundException { User user = new User(name, passwordEncoder.encode("123456"), AuthorityUtils.commaSeparatedStringToAuthorityList("read,ROLE_USER"));//設定許可權和角色 // 1. commaSeparatedStringToAuthorityList放入角色時需要加字首ROLE_,而在controller使用時不需要加ROLE_字首 // 2. 放入的是許可權時,不能加ROLE_字首,hasAuthority與放入的許可權名稱對應即可 return user; } }
上面使用了兩種授權方法,大家可以參考。
@GetMapping("/write") @PreAuthorize("hasAuthority('write')") public String getWrite() { return "have a write authority"; } @GetMapping("/read") @PreAuthorize("hasAuthority('read')") public String readDate() { return "have a read authority"; } @GetMapping("/read-or-write") @PreAuthorize("hasAnyAuthority('read','write')") public String readWriteDate() { return "have a read or write authority"; } @GetMapping("/admin-role") @PreAuthorize("hasRole('admin')") public String readAdmin() { return "have a admin role"; } @GetMapping("/user-role") @PreAuthorize("hasRole('USER')") public String readUser() { return "have a user role"; }
網上很多關於hasRole和hasAuthority的文章,很多都說二者沒有區別,但我認為,這是spring設計者的考慮,兩種性質完成獨立的東西,不存在任何關係,一個是用做角色控制,一個是操作許可權的控制,二者也並不矛盾。
permitAll
永遠返回truedenyAll
永遠返回falseanonymous
當前使用者是anonymous時返回truerememberMe
當前使用者是rememberMe使用者時返回trueauthenticated
當前使用者不是anonymous時返回truefullAuthenticated
當前使用者既不是anonymous也不是rememberMe使用者時返回truehasRole(role)
使用者擁有指定的角色許可權時返回truehasAnyRole([role1,role2])
使用者擁有任意一個指定的角色許可權時返回truehasAuthority(authority)
使用者擁有指定的許可權時返回truehasAnyAuthority([authority1,authority2])
使用者擁有任意一個指定的許可權時返回truehasIpAddress('192.168.1.0')
請求傳送的Ip匹配時返回true看到上述的表示式,應該能發現一些問題,在Security中,似乎並沒有嚴格區分角色和許可權,
如果沒有角色和許可權的區別,只需要hasRole()函數就夠了, hasAuthority()是做什麼用的?
答:區別就是,hasRole()的許可權名稱需要用 "ROLE_" 開頭,而hasAuthority()不需要,而且,這就是全部的區別。
在通常的系統設計中,我們區分角色和許可權,但是,判斷 “使用者是不是管理員”,和判斷 “是否擁有管理員許可權”,在程式碼邏輯上,其實是完全一致的,角色是一種許可權的象徵,可以看做是許可權的一種。因此,不區分角色和許可權,本身就是合理的做法。
如果撇開別的問題不談,只考慮許可權的問題,我們可以將角色視為許可權的一種,但是,角色是使用者的固有屬性,在使用者管理上還是非常有必要的,在Security4中,處理“角色”(如RoleVoter、hasRole表示式等)的程式碼總是會新增ROLE_字首,它更加方便開發者從兩個不同的維度去設計許可權。
Spring Security3 到 Spring Security4 的遷移檔案:
http://docs.spring.io/spring-security/site/migrate/current/3-to-4/html5/migrate-3-to-4-jc.html
S.O. (Stack Overflow)網站對這個問題的描述:
Think of a GrantedAuthority as being a "permission" or a "right". Those "permissions" are (normally) expressed as strings (with the getAuthority() method). Those strings let you identify the permissions and let your voters decide if they grant access to something.
You can grant different GrantedAuthoritys (permissions) to users by putting them into the security context. You normally do that by implementing your own UserDetailsService that returns a UserDetails implementation that returns the needed GrantedAuthorities.
Roles (as they are used in many examples) are just "permissions" with a naming convention that says that a role is a GrantedAuthority that starts with the prefix ROLE_. There's nothing more. A role is just a GrantedAuthority - a "permission" - a "right". You see a lot of places in spring security where the role with its ROLE_ prefix is handled specially as e.g. in the RoleVoter, where the ROLE_ prefix is used as a default. This allows you to provide the role names withtout the ROLE_ prefix. Prior to Spring security 4, this special handling of "roles" has not been followed very consistently and authorities and roles were often treated the same (as you e.g. can see in the implementation of the hasAuthority() method in SecurityExpressionRoot - which simply calls hasRole()). With Spring Security 4, the treatment of roles is more consistent and code that deals with "roles" (like the RoleVoter, the hasRole expression etc.) always adds the ROLE_ prefix for you. So hasAuthority('ROLE_ADMIN') means the the same as hasRole('ADMIN') because the ROLE_ prefix gets added automatically. See the spring security 3 to 4 migration guide for futher information.
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45