From e21396870f5e1167dc6bf861e4421120d04f657a Mon Sep 17 00:00:00 2001
From: RuoYi <yzz_ivy@163.com>
Date: 星期五, 21 十月 2022 11:56:15 +0800
Subject: [PATCH] 修正菜单状态注释信息

---
 ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java b/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
index 3f7fc67..bdb7199 100644
--- a/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
+++ b/ruoyi-framework/src/main/java/com/ruoyi/framework/config/SecurityConfig.java
@@ -102,6 +102,8 @@
         httpSecurity
                 // CSRF绂佺敤锛屽洜涓轰笉浣跨敤session
                 .csrf().disable()
+                // 绂佺敤HTTP鍝嶅簲鏍囧ご
+                .headers().cacheControl().disable().and()
                 // 璁よ瘉澶辫触澶勭悊绫�
                 .exceptionHandling().authenticationEntryPoint(unauthorizedHandler).and()
                 // 鍩轰簬token锛屾墍浠ヤ笉闇�瑕乻ession
@@ -109,7 +111,7 @@
                 // 杩囨护璇锋眰
                 .authorizeRequests()
                 // 瀵逛簬鐧诲綍login 娉ㄥ唽register 楠岃瘉鐮乧aptchaImage 鍏佽鍖垮悕璁块棶
-                .antMatchers("/login", "/register", "/captchaImage").anonymous()
+                .antMatchers("/login", "/register", "/captchaImage").permitAll()
                 // 闈欐�佽祫婧愶紝鍙尶鍚嶈闂�
                 .antMatchers(HttpMethod.GET, "/", "/*.html", "/**/*.html", "/**/*.css", "/**/*.js", "/profile/**").permitAll()
                 .antMatchers("/swagger-ui.html", "/swagger-resources/**", "/webjars/**", "/*/api-docs", "/druid/**").permitAll()
@@ -124,8 +126,6 @@
         // 娣诲姞CORS filter
         httpSecurity.addFilterBefore(corsFilter, JwtAuthenticationTokenFilter.class);
         httpSecurity.addFilterBefore(corsFilter, LogoutFilter.class);
-        // 绂佺敤缂撳瓨
-        httpSecurity.headers().cacheControl().disable();
     }
 
     /**

--
Gitblit v1.9.3