具体的情况是:要搭建起一个“来历不明”的项目、只有我一个开发(无法从队友手中拷贝配置文件很头疼)、项目无法自动编译,其中最有特征的现象是:无法project–clean
解决过程:首先确定了没有犯各种低级错误,比如jdk设置、有未解决的红叉、build source设置错误等。又注意到了无法project–clean很可能不是一般的无法编译问题。又猛然想到,在导入项目时报了一个错,提示缺少org.eclipse.ajdt.ui.ajnature,当时并没有在意,因为导入项目时经常会报一些错误,一般只要项目中没有红叉就都不用管。但是后来搜了下资料才发现,这个nature(项目特性)是会直接影响builder的。知道了原因,剩下的就好办了。
这个问题最直接的办法就是在eclipse中的插件市场中下载这个插件,不过我这边再一次很不给面子的下载失败了。
那把它删掉就好了。打开项目根目录下的.project文件,发现有这么多配置
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>aaaaa</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.ajdt.core.ajbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.common.project.facet.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.wst.validation.validationbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.genuitec.eclipse.ast.deploy.core.DeploymentBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.ajdt.ui.ajnature</nature>
<nature>org.springframework.ide.eclipse.core.springnature</nature>
<nature>com.genuitec.eclipse.ast.deploy.core.deploymentnature</nature>
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
</natures>
</projectDescription>
再随便打开一个spring+maven项目的.project文件,把内容替换
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>aaaaa</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
在项目上右键fresh,重新clean一下就可以正常编译了。