在spring boot使用的过程中, 发现我修改了静态文件, 前台刷新后, 没有任何变化, 必须重新启动, 才能看到, 这简直不能让人接受.
那有什么方法来解决这个问题呢.
Baidu之后, 得到了想要的答案, 在这里记录下来.
1. pom.xml 修改
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </dependency>
在pom.xml文件中, 加入此配置, 可以更新后台修改的静态文件
2. file->settings
在上图中, 将红色圈中的部分, 选中即可
3. shift + ctrl + alt + /
通过以上快捷键, 会弹出Maintenance弹窗, 选择第一个
转自:https://blog.csdn.net/qq_15870133/article/details/78732680
原文地址:https://www.cnblogs.com/sanduweiliangxtx/p/10124129.html
时间: 2024-11-03 22:22:11