Commit d329b0c8 authored by 郑杰's avatar 郑杰
Browse files

update README.md

parent 76b6ebeb
...@@ -26,7 +26,7 @@ ...@@ -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免费图床
- 富文本编辑器 - 富文本编辑器
......
...@@ -73,7 +73,6 @@ public class WebSecurityConfig extends WebSecurityConfigurerAdapter { ...@@ -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 { ...@@ -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 { ...@@ -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()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment