環境:idea 2019.2
引入pom依賴:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <!--熱部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
yml配置:
spring: mvc: # “spring.mvc.static-path-pattern”用於闡述HTTP請求地址,請求非controller地址,如js,css,img等訪問路徑需要加上static # 而“spring.resources.static-locations”則用於描述靜態資源的存放位置。多個路徑(逗號隔開)中依次查找是否存在 # static-path-pattern: /static/** resources: static-locations: classpath:/static/,file:D:\\ thymeleaf: cache: false prefix: classpath:/templates/ suffix: .html mode: HTML5 encoding: UTF-8 # 熱部署 devtools: restart: # 是否啟用重啟 enabled: true # 設置重啟的目錄 additional-paths: src/main/java #classpath目錄下的WEB-INF文件夾內容修改不重啟 spring.devtools.restart.exclude: WEB-INF/** # 指定程序的配置文件 # profiles: dev
五、File->settings->Build,Execution,Deployment->Complier:勾選Build project automatically -> apply ->ok
六、shift + alt + ctrl + /