문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판 이전 판 다음 판 | 이전 판 | ||
|
springframework:springboot [2019/04/05 15:21] kwon37xi |
springframework:springboot [2022/10/26 10:14] (현재) kwon37xi |
||
|---|---|---|---|
| 줄 13: | 줄 13: | ||
| * [[springframework: | * [[springframework: | ||
| * [[springframework: | * [[springframework: | ||
| + | * [[springframework: | ||
| + | * [[https:// | ||
| ===== @EnableAutoConfiguration ===== | ===== @EnableAutoConfiguration ===== | ||
| 줄 44: | 줄 46: | ||
| ===== SpringBoot WebMVC 정적 리소스(static resource) ===== | ===== SpringBoot WebMVC 정적 리소스(static resource) ===== | ||
| - | | + | ==== static resource 서빙 경로 ==== |
| + | | ||
| * jar 애플리케이션을 실행한 디렉토리 하위의 '' | * jar 애플리케이션을 실행한 디렉토리 하위의 '' | ||
| * '' | * '' | ||
| 줄 51: | 줄 54: | ||
| @Override | @Override | ||
| public void addResourceHandlers(ResourceHandlerRegistry registry) { | public void addResourceHandlers(ResourceHandlerRegistry registry) { | ||
| - | registry.addResourceHandler("/ | + | registry.addResourceHandler("/ |
| + | | ||
| } | } | ||
| } | } | ||
| </ | </ | ||
| + | |||
| + | ==== static resource 관련 프라퍼티 ==== | ||
| + | * [[https:// | ||
| + | < | ||
| + | spring.mvc.static-path-pattern=/ | ||
| + | |||
| + | 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 | ||
| + | </ | ||
| + | |||
| ===== 참고 ===== | ===== 참고 ===== | ||
| 줄 65: | 줄 82: | ||
| * [[http:// | * [[http:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||