[Spring] spring-boot-devtools 라이브러리 추가하기
- build.gradle 에 해당 라인(볼드체)을 추가한다.
1
2
3
4
5
6
|
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-devtools'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
|
cs |
원래는 파일을 수정한 후에 서버를 재시작해야 변경사항이 적용됐었다.
그렇지만 이제는 해당 파일을 Recompile 하는 것만으로도 적용이 된다.
(이전 게시글의 .html 파일에서 '안녕하세요' 를 '반갑습니다'로 변경했다.)
- Build > Recompile '변경된 파일' 클릭
- 변경사항이 적용된 것을 확인한다.
'etc > Spring' 카테고리의 다른 글
[Spring] MVC 와 템플릿 엔진 (0) | 2021.01.12 |
---|---|
[Spring] 정적 컨텐츠 (.html) 가져오기 (0) | 2021.01.04 |
[Spring] Port 8080 was already in use. (0) | 2021.01.04 |
[Spring] 프로젝트 빌드하고 실행하기 (0) | 2021.01.04 |
[Spring] Welcome Page 만들기 (0) | 2021.01.03 |
댓글
이 글 공유하기
다른 글
-
[Spring] 정적 컨텐츠 (.html) 가져오기
[Spring] 정적 컨텐츠 (.html) 가져오기
2021.01.04 -
[Spring] Port 8080 was already in use.
[Spring] Port 8080 was already in use.
2021.01.04 -
[Spring] 프로젝트 빌드하고 실행하기
[Spring] 프로젝트 빌드하고 실행하기
2021.01.04 -
[Spring] Welcome Page 만들기
[Spring] Welcome Page 만들기
2021.01.03