我只是https://src.springframework.org/svn/spring-samples/并试图建立一个宠物诊所。 我做了:
我导入了eclipse但是:
The import org.aspectj cannot be resolved
pom.xml
出错的几率是多少?我必须自己添加依赖项?
答案 0 :(得分:1)
这是maven eclipse插件中的已知bug。
一个简单的解决方法是在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;
}