spring-security-oauth2-authorization-server 框架配置匿名
时间: 2023-08-14 14:06:37 浏览: 133
spring-security-oauth2
在 Spring Security OAuth2 Authorization Server 中配置匿名访问,可以通过在 Spring Security 配置文件中使用 `permitAll()` 方法对指定的 URL 进行匿名访问授权。例如,可以通过以下方式配置:
```java
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/oauth/token").permitAll()
.anyRequest().authenticated();
}
```
在上面的示例中,配置了 `/oauth/token` 路径可以匿名访问,而其他请求需要进行身份认证。这样就可以实现对授权服务器中的部分 URL 进行匿名访问授权了。
阅读全文