티스토리 뷰
스프링 부트에서 정적 파일(css, js, images 파일 등등) 에 대한 경로를 지정할 때 아래와 같이 설정하면 됩니다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; @Configuration public class StaticResourceConfiguration extends WebMvcConfigurerAdapter { private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { "classpath:/META-INF/resources/", "classpath:/resources/", "classpath:/static/", "classpath:/public/" }; @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { if (!registry.hasMappingForPattern("/**")) { registry.addResourceHandler("/**").addResourceLocations( CLASSPATH_RESOURCE_LOCATIONS); } } } | cs |
간단 간단!
'생활코딩 > Spring' 카테고리의 다른 글
Spring Data JPA @Temporal Annotation (0) | 2016.10.12 |
---|---|
Spring Data JPA @Access Annotation (0) | 2016.10.12 |
Summernote 이미지 업로드 예제 (4) | 2016.09.21 |
이클립스 플러그인 소개 MyBatipse (3) | 2016.05.03 |
Apache Poi를 활용한 엑셀(Excel) 이미지 출력 2 (5) | 2016.05.03 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- RollingFileAppender
- 정적 파일
- summernote
- offline.js
- WYSIWYG
- 스프링 부트
- 오프라인 확인
- @Access
- Spring
- GO1104 LED
- static resources
- 쿼리 로그
- 자바스크립트
- mybatipse
- @Temporal
- Spring Boot
- 브라우저 콘솔
- jsonify
- log4jdbc
- 한성키보드
- AngularJS
- bootstrap
- Excel
- java
- 초대장
- spring jpa
- AOP
- jQuery 삽입
- telegram bot
- learning javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함