英文:
Everytime i do any changes to java code, it won't reflect after i saves the file
问题
我正在使用 Eclipse Neon 进行我的 Java 项目,每当我对 Java 代码进行任何更改时,保存文件后不会反映出来(例如:一个简单的 syso 语句)。我必须执行maven clean 和 maven install 我的项目,然后重新启动引导。
英文:
I am using Eclipse Neon for my java project, every time I do any changes to java code, it won't reflect after I save the file (for ex: a simple syso statement). I have to do maven clean and maven install my project then restarts the boot.
答案1
得分: 1
在你的项目的pom.xml中添加devtools依赖(如果是Spring Boot项目):
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
并在Eclipse中启用自动构建:
英文:
Add devtools dependency to your project in pom.xml (if spring boot project) :-
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
And enable Build Automatically in eclipse :-
答案2
得分: 0
确保在“项目->自动构建”中启用“自动构建”选项。
同时尝试使用Mvn -> 更新项目来更新项目。
英文:
Ensure that Build Automatically option in Project->Build Automatically
, is enabled.
Also try to update the project using Mvn > update project
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论