说明
在使用 IDEA 启动项目的时候,可能会提示下面的信息:
java: JPS incremental annotation processing is disabled. Compilation results on partial recompilation may be inaccurate. Use build process "jps.track.ap.dependencies" VM flag to enable/disable incremental annotation processing environment.
解决方案
方案一
在 Settings 中配置:-Djps.track.ap.dependencies=false
如下图所示。
但是该方案有时候会失效,可以考虑方案二。
方案二
在 pom.xml 中添加下面的依赖
<dependency>
<groupId>com.intellij</groupId>
<artifactId>annotations</artifactId>
<version>6.0.3</version>
</dependency>
刷新一下 maven 依赖,重启项目即可。