-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
...atistics-biz/src/main/java/cn/iocoder/yudao/module/statistics/framework/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* 属于 statistics 模块的 framework 封装 | ||
* | ||
* @author 芋道源码 | ||
*/ | ||
package cn.iocoder.yudao.module.statistics.framework; |
34 changes: 34 additions & 0 deletions
34
...a/cn/iocoder/yudao/module/statistics/framework/security/config/SecurityConfiguration.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package cn.iocoder.yudao.module.statistics.framework.security.config; | ||
|
||
import cn.iocoder.yudao.framework.security.config.AuthorizeRequestsCustomizer; | ||
import org.springframework.context.annotation.Bean; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.security.config.annotation.web.builders.HttpSecurity; | ||
import org.springframework.security.config.annotation.web.configurers.ExpressionUrlAuthorizationConfigurer; | ||
|
||
/** | ||
* Statistics 模块的 Security 配置 | ||
*/ | ||
@Configuration("statisticsSecurityConfiguration") | ||
public class SecurityConfiguration { | ||
|
||
@Bean("statisticsAuthorizeRequestsCustomizer") | ||
public AuthorizeRequestsCustomizer authorizeRequestsCustomizer() { | ||
return new AuthorizeRequestsCustomizer() { | ||
|
||
@Override | ||
public void customize(ExpressionUrlAuthorizationConfigurer<HttpSecurity>.ExpressionInterceptUrlRegistry registry) { | ||
// Swagger 接口文档 | ||
registry.antMatchers("/v3/api-docs/**").permitAll() // 元数据 | ||
.antMatchers("/swagger-ui.html").permitAll(); // Swagger UI | ||
// Spring Boot Actuator 的安全配置 | ||
registry.antMatchers("/actuator").anonymous() | ||
.antMatchers("/actuator/**").anonymous(); | ||
// Druid 监控 | ||
registry.antMatchers("/druid/**").anonymous(); | ||
} | ||
|
||
}; | ||
} | ||
|
||
} |
4 changes: 4 additions & 0 deletions
4
...rc/main/java/cn/iocoder/yudao/module/statistics/framework/security/core/package-info.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** | ||
* 占位 | ||
*/ | ||
package cn.iocoder.yudao.module.statistics.framework.security.core; |