update README.md

pull/111/head
郑杰 2018-12-29 09:59:26 +08:00
parent 76b6ebebc5
commit d329b0c8b0
2 changed files with 1 additions and 4 deletions

View File

@ -26,7 +26,7 @@
- 系统日志 记录用户访问监控异常信息 - 系统日志 记录用户访问监控异常信息
- 实时控制台 显示logback实时日志 - 实时控制台 显示logback实时日志
- redis管理 将redis的操作可视化提供对redis的基本操作 - redis管理 将redis的操作可视化提供对redis的基本操作
- redis限流 对系统的流量进行控制,由[https://github.com/everhopingandwaiting](everhopingandwaiting)提供 - redis限流 对系统的流量进行控制,由[everhopingandwaiting](https://github.com/everhopingandwaiting)提供
- SQL监控 采用 druid 监控数据库访问性能 - SQL监控 采用 druid 监控数据库访问性能
- 三方工具: 邮件工具sm.ms免费图床 - 三方工具: 邮件工具sm.ms免费图床
- 富文本编辑器 - 富文本编辑器

View File

@ -73,7 +73,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
// 不创建会话 // 不创建会话
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and() .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()
.authorizeRequests() .authorizeRequests()
.antMatchers("/auth/**").permitAll() .antMatchers("/auth/**").permitAll()
@ -87,7 +86,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
// swagger end // swagger end
.antMatchers("/test/**").anonymous() .antMatchers("/test/**").anonymous()
.antMatchers(HttpMethod.OPTIONS, "/**").anonymous() .antMatchers(HttpMethod.OPTIONS, "/**").anonymous()
// 所有请求都需要认证 // 所有请求都需要认证
.anyRequest().authenticated(); .anyRequest().authenticated();
@ -104,7 +102,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
HttpMethod.POST, HttpMethod.POST,
authenticationPath authenticationPath
) )
// allow anonymous resource requests // allow anonymous resource requests
.and() .and()
.ignoring() .ignoring()