|
@@ -5,7 +5,7 @@ import org.springframework.beans.factory.annotation.Value;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
|
|
-import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer;
|
|
|
|
|
|
+import org.springframework.security.config.annotation.web.configurers.AuthorizeHttpRequestsConfigurer;
|
|
|
|
|
|
/**
|
|
/**
|
|
* Infra 模块的 Security 配置
|
|
* Infra 模块的 Security 配置
|
|
@@ -21,22 +21,22 @@ public class SecurityConfiguration {
|
|
return new AuthorizeRequestsCustomizer() {
|
|
return new AuthorizeRequestsCustomizer() {
|
|
|
|
|
|
@Override
|
|
@Override
|
|
- public void customize(ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry) {
|
|
|
|
|
|
+ public void customize(AuthorizeHttpRequestsConfigurer<HttpSecurity>.AuthorizationManagerRequestMatcherRegistry registry) {
|
|
// Swagger 接口文档
|
|
// Swagger 接口文档
|
|
- registry.antMatchers("/v3/api-docs/**").permitAll()
|
|
|
|
- .antMatchers("/webjars/**").permitAll()
|
|
|
|
- .antMatchers("/swagger-ui.html").permitAll()
|
|
|
|
- .antMatchers("/swagger-ui/**").permitAll();
|
|
|
|
|
|
+ registry.requestMatchers("/v3/api-docs/**").permitAll()
|
|
|
|
+ .requestMatchers("/webjars/**").permitAll()
|
|
|
|
+ .requestMatchers("/swagger-ui.html").permitAll()
|
|
|
|
+ .requestMatchers("/swagger-ui/**").permitAll();
|
|
// Spring Boot Actuator 的安全配置
|
|
// Spring Boot Actuator 的安全配置
|
|
- registry.antMatchers("/actuator").anonymous()
|
|
|
|
- .antMatchers("/actuator/**").anonymous();
|
|
|
|
|
|
+ registry.requestMatchers("/actuator").permitAll()
|
|
|
|
+ .requestMatchers("/actuator/**").permitAll();
|
|
// Druid 监控
|
|
// Druid 监控
|
|
- registry.antMatchers("/druid/**").anonymous();
|
|
|
|
|
|
+ registry.requestMatchers("/druid/**").permitAll();
|
|
// Spring Boot Admin Server 的安全配置
|
|
// Spring Boot Admin Server 的安全配置
|
|
- registry.antMatchers(adminSeverContextPath).anonymous()
|
|
|
|
- .antMatchers(adminSeverContextPath + "/**").anonymous();
|
|
|
|
|
|
+ registry.requestMatchers(adminSeverContextPath).permitAll()
|
|
|
|
+ .requestMatchers(adminSeverContextPath + "/**").permitAll();
|
|
// 文件读取
|
|
// 文件读取
|
|
- registry.antMatchers(buildAdminApi("/infra/file/*/get/**")).permitAll();
|
|
|
|
|
|
+ registry.requestMatchers(buildAdminApi("/infra/file/*/get/**")).permitAll();
|
|
}
|
|
}
|
|
|
|
|
|
};
|
|
};
|