Not injecting HSTS header since it did not match the requestMatcher HSTS设置问题解决
生活随笔
收集整理的這篇文章主要介紹了
Not injecting HSTS header since it did not match the requestMatcher HSTS设置问题解决
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
HSTS請求設置
-
錯誤描述:在使用文件上傳功能時,form表單提交帶有header數據的請求時遇到這個問題,報錯如下:
-
原因:沒有設置 HTTPS,則永遠不應讀取 HSTS 值
-
解決方法:
@Configuration
@EnableWebSecurity
public class SecurityConfigurer extends WebSecurityConfigurerAdapter {...@Overrideprotected void configure(HttpSecurity http) throws Exception {//以下兩種方法選擇其一 //第一種http.headers().httpStrictTransportSecurity().disable()// 第二種http.headers().httpStrictTransportSecurity().maxAgeInSeconds(0).includeSubDomains(true);}
}
總結
以上是生活随笔為你收集整理的Not injecting HSTS header since it did not match the requestMatcher HSTS设置问题解决的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Reject: HTTP ‘DELETE
- 下一篇: restTemplate http请求报