如何不重啟程序修改html
SpringBoot+thymeleaf不重啟修改html
烙印99
2018-08-04 14:50:55
TA貢獻1875條經驗 獲得超3個贊
spring.thymeleaf.cache 設為false
或者使用springboot的devtools
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <version>1.3.0.RELEASE</version> </dependency>
舉報