合同功能开发

This commit is contained in:
huangdeliang
2020-10-23 20:45:24 +08:00
parent a23a02ab60
commit d69e56371b
10 changed files with 276 additions and 106 deletions

View File

@ -97,7 +97,11 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
// 过滤请求
.authorizeRequests()
// 对于登录login 验证码captchaImage 允许匿名访问
.antMatchers("/login", "/captchaImage").anonymous()
.antMatchers(
"/login",
"/captchaImage",
"/common/contract"
).anonymous()
.antMatchers(
HttpMethod.GET,
"/*.html",