修改接口权限

This commit is contained in:
huangdeliang 2020-10-28 12:28:38 +08:00
parent f095bd8c8c
commit ee29eb47f2

@ -96,7 +96,9 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
// 对于登录login 验证码captchaImage 允许匿名访问
.antMatchers(
"/login",
"/captchaImage"
"/captchaImage",
"/custom/contract/sign",
"/custom/contract/file/**"
).anonymous()
.antMatchers(
HttpMethod.GET,
@ -113,8 +115,6 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter {
.antMatchers("/webjars/**").anonymous()
.antMatchers("/*/api-docs").anonymous()
.antMatchers("/druid/**").anonymous()
.antMatchers("/custom/contract/sign").anonymous()
.antMatchers("/custom/contract/file/**").anonymous()
// 除上面外的所有请求全部需要鉴权认证
.anyRequest().authenticated()