Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
郑杰 committed Dec 29, 2018
1 parent 76b6ebe commit d329b0c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
- 系统日志 记录用户访问监控异常信息
- 实时控制台 显示logback实时日志
- redis管理 将redis的操作可视化,提供对redis的基本操作
- redis限流 对系统的流量进行控制,由[https://github.com/everhopingandwaiting](everhopingandwaiting)提供
- redis限流 对系统的流量进行控制,由[everhopingandwaiting](https://github.com/everhopingandwaiting)提供
- SQL监控 采用 druid 监控数据库访问性能
- 三方工具: 邮件工具,sm.ms免费图床
- 富文本编辑器
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/me/zhengjie/core/config/WebSecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ protected void configure(HttpSecurity httpSecurity) throws Exception {

// 不创建会话
.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS).and()

.authorizeRequests()

.antMatchers("/auth/**").permitAll()
Expand All @@ -87,7 +86,6 @@ protected void configure(HttpSecurity httpSecurity) throws Exception {
// swagger end
.antMatchers("/test/**").anonymous()
.antMatchers(HttpMethod.OPTIONS, "/**").anonymous()

// 所有请求都需要认证
.anyRequest().authenticated();

Expand All @@ -104,7 +102,6 @@ public void configure(WebSecurity web) throws Exception {
HttpMethod.POST,
authenticationPath
)

// allow anonymous resource requests
.and()
.ignoring()
Expand Down

0 comments on commit d329b0c

Please sign in to comment.