update ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java.

修改注释,CRSF禁用
master
Lyy 5 years ago committed by Gitee
parent d596d5bb8e
commit 4f7702b22a

@ -88,7 +88,7 @@ public class SecurityConfig extends WebSecurityConfigurerAdapter
protected void configure(HttpSecurity httpSecurity) throws Exception protected void configure(HttpSecurity httpSecurity) throws Exception
{ {
httpSecurity httpSecurity
// CRSF禁用因为不使用session // CSRF禁用因为不使用session
.csrf().disable() .csrf().disable()
// 认证失败处理类 // 认证失败处理类
.exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and() .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()

Loading…
Cancel
Save