JAVA:[69,70] No symbol resolution found

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.