LoginSignup
2
2

More than 5 years have passed since last update.

SpringBootあれこれ

Posted at

SpringBoot利用時のメモ

環境

  • windows7
  • eclipse Luna
  • java8(1.8.0_25)
  • spring-boot(1.2.2)

thymeleafキャッシュオフ

テンプレートを修正してもすぐに反映されず、
いちいち起動し直すのが面倒だったので。

application.yml
spring.thymeleaf.cache: false

※上記ファイルをsrc/main/resources直下に置く

ホットデプロイ

これまたいちいち起動し直すのが面倒だったので。

pom.xml
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>springloaded</artifactId>
</dependency>

eclipseで起動するときはVM argumentsに以下を指定する

-javaagent:[springloadedまでのパス]/springloaded-1.2.1.RELEASE.jar -noverify
2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2