oauth2.1 flow test、 page flow

pull/4/head
shengzhaoli.shengz 1 year ago
parent 1b4c1944bc
commit bd3e8ed961

@ -58,6 +58,10 @@ public class WebSecurityConfigurer {
// /user/ 开头的URL需要 ADMIN 权限
.requestMatchers("/user/**").hasAnyRole("ADMIN")
// 所有以 /unity/ 开头的 URL属于 UNITY 权限
.requestMatchers("/unity/**").hasAnyRole("UNITY")
// 所有以 /m/ 开头的 URL属于 MOBILE 权限
.requestMatchers("/m/**").hasAnyRole("MOBILE")
// anyRequest() 放最后
.anyRequest().authenticated();
});

Loading…
Cancel
Save