사용자 도구

사이트 도구


springframework:springboot

차이

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

차이 보기로 링크

양쪽 이전 판 이전 판
다음 판 양쪽 다음 판
springframework:springboot [2018/11/29 12:39]
kwon37xi [SpringBoot]
springframework:springboot [2019/04/05 15:21]
kwon37xi
줄 42: 줄 42:
   * [[https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/SpringApplicationRunListener.html|SpringApplicationRunListener]]   * [[https://docs.spring.io/spring-boot/docs/current/api/org/springframework/boot/SpringApplicationRunListener.html|SpringApplicationRunListener]]
   * SpringBoot 로딩중 이벤트를 받아 처리한다.   * SpringBoot 로딩중 이벤트를 받아 처리한다.
 +
 +===== SpringBoot WebMVC 정적 리소스(static resource) =====
 +  * ''/src/main/META-INF/resources''
 +  * jar 애플리케이션을 실행한 디렉토리 하위의 ''public/'' 디렉토리
 +  * ''WebMvcConfigurerAdapter.addResourceHandlers'' 오버라이드하여 직접 지정<code java>
 +@Configuration
 +public class StaticResourceConfig extends WebMvcConfigurerAdapter {
 +    @Override
 +    public void addResourceHandlers(ResourceHandlerRegistry registry) {
 +        registry.addResourceHandler("/static/**").addResourceLocations("file:/var/www/html");
 +    }
 +}
 +</code>
  
 ===== 참고 ===== ===== 참고 =====
springframework/springboot.txt · 마지막으로 수정됨: 2022/10/26 10:14 저자 kwon37xi