2015년 11월 29일 일요일

Spring Boot Appendix3 (Developer Tools)

Developer tools
(https://docs.spring.io/spring-boot/docs/current/reference/html/using-boot-devtools.html)
Maven

<dependencies>
   <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-devtools</artifactId>
      <optional>true</optional>
   </dependency>
</dependencies>
Gradle
dependencies {
   compile("org.springframework.boot:spring-boot-devtools")
}
  • Property defaults
  • Automatic restart
  • LiveReload
  • Global settings
  • Remote applications

댓글 없음:

댓글 쓰기

참고: 블로그의 회원만 댓글을 작성할 수 있습니다.