Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 java 项目中使用 Eclipse Neon,每次我对 java 代码进行任何更改时,它都不会在我保存文件后反映出来(例如:一个简单的 syso 语句)。我必须做maven clean 和 maven install我的项目,然后重新启动。
在 pom.xml 中将 devtools 依赖项添加到您的项目(如果是 spring boot 项目):-
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> </dependency>
并在 Eclipse 中启用自动构建:-
确保 , 中的 Build Automatically 选项Project->Build Automatically已启用。
Project->Build Automatically
也尝试使用 Mvn > update project 更新项目