在Spring Security 6中,.not()的替代品是什么?

y3bcpkx1  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(166)

在Spring Security 5中,您可以像这样配置HttpSecurity

  1. http.antMatcher("/**")
  2. .authorizeRequests()
  3. .antMatchers("/").not().hasRole("INVITED")
  4. .antMatchers("/forgot-password").not().authenticated()

字符串
在Spring Security 6中,新系统中不再有任何not()方法:

  1. http.securityMatcher("/**")
  2. .authorizeHttpRequests((authorize) -> authorize
  3. .requestMatchers("/").???.hasRole("INVITED")
  4. .requestMatchers("/forgot-password").???.authenticated()
  5. )


在Spring Security 6中,像这样否定授权表达式的方法是什么?

nnvyjq4y

nnvyjq4y1#

据我所知,没有替代品,但你可以自己实现一个:

  1. public static <T> AuthorizationManager<T> not(AuthorizationManager<T> manager) {
  2. return (authentication, object) -> {
  3. AuthorizationDecision decision = manager.check(authentication, object);
  4. if (decision == null) {
  5. return null;
  6. } else {
  7. return new AuthorizationDecision(!decision.isGranted());
  8. }
  9. };
  10. }

字符串
然后可以将其与来自org.springframework.security.authorization的其他静态导入结合使用:

  1. http.securityMatcher("/**")
  2. .authorizeHttpRequests((authorize) -> authorize
  3. .requestMatchers("/").access(not(hasRole("INVITED")))
  4. .requestMatchers("/forgot-password").access(not(authenticated()))
  5. )

展开查看全部

相关问题