Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- javascript value
- spring batch #스프링 배치 #스프링 배치 중복 실행
- requestbody
- Babel
- CAS
- 자바스크립트
- Effective Java
- JetBrains
- javascript 기초
- Intellij
- java.util.LinkedHashMap cannot be cast
- effectivejava
- webstorm
- Redis
- javascript 값
- 이펙티브자바
- 이펙티브 자바
- Spring
- webpack
- ECMA2015
- 자바
- nodeJS
- you don't know js
- javascript
- javascript native
- Spring Session
- spring security
- java
- ES6
- javascript type
Archives
- Today
- Total
귀찮지만 만들어보자
spring boot resource update 본문
spring boot는 embedded tomcat을 내장하고 있어서
일반적인 자바 어플리케이션을 실행하는것처럼 동작하게 되는데
그래서 톰캣의 resources update 기능을 사용하기가 힘들다
gradle이나 maven을 사용하면 대체가 가능하다
gradle은 잘 모르겠고(-_-;)
maven은
mvn resources:resources
키워드로 변경된 내용을 서버 재기동없이 리로드가 가능하다
+ 추가
maven 기준으로
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
devtools dependency를 추가하면
ctrl (command) + F9로 해결이 가능하다