After the recent use of Maven clean, the install project, I found a bunch of "java:[69,70" not find symbols "issue, as follows:
Solution:
Changing the local jar package introduced by the MAVEN project Add to Build Path into the introduction of the POM, the local jar configuration of the Pom is as follows:
<dependency>
<groupId>cn.eova</groupId>
<artifactId>eova</artifactId>
<version>1.5.1</version>
<scope>system</scope>
<systemPath>${basedir}/ext-lib/eova-1.5.1.jar</systemPath>
</dependency>
The system represents a local introduction, Systempath defines the path, and ${basedir} represents the project root directory.
Re-install, compile successfully
Analysis:
Lookup data seems to be due to the internal dependencies caused by the error, guess is introduced in two ways Jar,install when Maven detects the add to Build Path introduced by the package, so the error.
JAVA:[69,70] No symbol resolution found