Administrator
2025-12-15 edd315e3fd64c86b3a5ce349c7dffc7a4643c0ee
chore(devtools): 禁用Spring Boot开发工具重启功能

- 在应用启动时设置系统属性禁用devtools重启
- 防止开发环境中的自动重启影响应用稳定性
1 files modified
1 ■■■■ changed files
src/main/java/com/xcong/excoin/ExcoinApplication.java 1 ●●●● patch | view | raw | blame | history
src/main/java/com/xcong/excoin/ExcoinApplication.java
@@ -16,6 +16,7 @@
public class ExcoinApplication {
    public static void main(String[] args) {
        System.setProperty("spring.devtools.restart.enabled", "false");
        SpringApplication.run(ExcoinApplication.class, args);
    }