-
Notifications
You must be signed in to change notification settings - Fork 3k
autz
zhōuhào edited this page Sep 27, 2017
·
10 revisions
hsweb除了提供了基本的RDAC权限控制外,还提供了数据权限控制,并且可以灵活拓展.
//第一种方式: 使用参数注入的方式获取
@RequestMapping
public ResponseMessage<String> getLoginUserId(Authentication auth){
return ok(auth.getUser().getId());
}
//第一种方式: 使用静态方法获取
@RequestMapping
public ResponseMessage<String> getLoginUserId(){
Authentication auth=Authentication.current().orElseThrow(UnAuthorizedException::new);
return ok(auth.getUser().getId());
}
更多Authentication
的细节,请查看源代码