출처 : https://stackoverflow.com/questions/7748140/font-face-eot-not-loading-over-https#answer-36099055


ie 모든 버전의 오류 인 것 같다. 


리퀘스트 헤더 부분에 다음을 추가하면 된다.

"Cache-Control":" no-cache,max-age=0, must-revalidate"

"Expires":"0"



스프링 부트에서 설정하는 방법은 다음과 같다.


public class SecurityConfig extends WebSecurityConfigurerAdapter {

@Override

public void configure(HttpSecurity http) throws Exception {

   http.headers().defaultsDisabled()

        .addHeaderWriter(new StaticHeadersWriter("Cache-Control"," no-cache,max-age=0, must-revalidate"))

        .addHeaderWriter(new StaticHeadersWriter("Expires","0"));

 }

}


Posted by motolies
,