3

我只是合作https://src.springframework.org/svn/spring-samples/并尝试建立宠物诊所。我做了:

  • mvn 干净安装
  • mvn 日食:日食

我导入到 Eclipse 但是:

The import org.aspectj cannot be resolved

错误的可能性有多大,pom.xml我必须自己添加依赖项?

4

1 回答 1

1

这是maven eclipse 插件中的一个已知错误。

一个简单的解决方法是在您的 POM 的 maven-eclipse-plugin 配置部分中指定 adjtVersion(或者只是更新您的版本:D):

<ajdtVersion>none</ajdtVersion>

EclipseClassPathWriter 包含以下代码:

    // Skip aspectj libraries since they are in the container.
            if ( ( config.getAjdtVersion() != 0 ) &&
               dep.getArtifactId().toLowerCase().indexOf( "aspectj" ) >= 0 )
            {
                return;
            }
于 2010-08-05T17:12:41.027 回答