如何不重启程序修改html
如果使用的开发工具是 idea ,修改 html 后使用 Ctrl + Shift + F9.
spring.thymeleaf.cache 设为false或者使用springboot的devtools
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <version>1.3.0.RELEASE</version> </dependency>
spring.thymeleaf.cache=false
SpringBoot启动的时候会自动启动一个liveReload服务,你可以在火狐/chrome里可以找到liveReload插件,然后你改了html/css/js之后页面会自动刷新,不用重新部署,不过装这个插件要科学一下好像
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(4)
如果使用的开发工具是 idea ,修改 html 后使用 Ctrl + Shift + F9.
spring.thymeleaf.cache 设为false
或者使用springboot的devtools
spring.thymeleaf.cache=false
SpringBoot启动的时候会自动启动一个liveReload服务,你可以在火狐/chrome里可以找到liveReload插件,然后你改了html/css/js之后页面会自动刷新,不用重新部署,不过装这个插件要科学一下好像