사용자 도구

사이트 도구


springframework:springboot

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판
이전 판
다음 판 양쪽 다음 판
springframework:springboot [2019/04/05 15:21]
kwon37xi
springframework:springboot [2019/04/22 14:21]
kwon37xi [Server / Tomcat 설정]
줄 44: 줄 44:
  
 ===== SpringBoot WebMVC 정적 리소스(static resource) ===== ===== SpringBoot WebMVC 정적 리소스(static resource) =====
 +==== static resource 서빙 경로 ====
 +
   * ''/src/main/META-INF/resources''   * ''/src/main/META-INF/resources''
   * jar 애플리케이션을 실행한 디렉토리 하위의 ''public/'' 디렉토리   * jar 애플리케이션을 실행한 디렉토리 하위의 ''public/'' 디렉토리
줄 51: 줄 53:
     @Override     @Override
     public void addResourceHandlers(ResourceHandlerRegistry registry) {     public void addResourceHandlers(ResourceHandlerRegistry registry) {
-        registry.addResourceHandler("/static/**").addResourceLocations("file:/var/www/html");+        registry.addResourceHandler("/static/**") 
 +            .addResourceLocations("file:/var/www/html");
     }     }
 } }
 </code> </code>
 +==== static resource 관련 프라퍼티 ====
 +<code>
 +server.compression.enabled=true
 +spring.resources.chain.cache=true
 +server.compression.min-response-size=2048
 +spring.resources.chain.enabled=true
 +spring.resources.cache-period=3600
 +</code>
 +
  
 ===== 참고 ===== ===== 참고 =====
springframework/springboot.txt · 마지막으로 수정됨: 2022/10/26 10:14 저자 kwon37xi