您的位置:首页 > 运维架构 > Tomcat

错误Target runtime Apache Tomcat 6.0 is not defined的解决方案

2014-12-24 10:10 423 查看
Eclipse导入工程后工程上显示一个小红叉,但工程里没有文件错误,也没有语法错误,百思不得其解啊,后来在网上找了一些资料说是项目引用的类库路径有问题。【项目】->【右键】->【build path】->【configure build path】->【libraries】,查看一下引用的类库路径。网上都说是因为这里引用错误引起的,但是我在项目导入的时候做的第一件事情就是修改这里的library,因此不是这个原因。

在problems中显示错误是:Target runtime Apache Tomcat 6.0 is not defined. 在网上查了一下终于找到解决方法。方法是:在工程目录下的.settings文件夹里,打开org.eclipse.wst.common.project.facet.core.xml文件,其内容是:

<?xmlversion="1.0"encoding="UTF-8"?>

<faceted-project>

<runtimename="Apache Tomcat v6.0"/>

<fixedfacet="jst.web"/>

<fixedfacet="jst.java"/>

<installedfacet="jst.java"version="6.0"/>

<installedfacet="jst.web"version="2.5"/>

<installedfacet="wst.jsdt.web"version="1.0"/>

</faceted-project>

将其修改为:

<pre class="code" name="code" style="white-space: pre-wrap; word-wrap: break-word; color: rgb(51, 51, 51); font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);"><span style="color: teal;"><?</span><span style="color: rgb(63, 127, 127);">xml </span><span style="color: rgb(127, 0, 127);">version</span>=<span style="color: rgb(42, 0, 255);">"1.0" </span><span style="color: rgb(127, 0, 127);">encoding</span>=<span style="color: rgb(42, 0, 255);">"UTF-8" </span><span style="color: teal;">?>
<</span><span style="color: rgb(63, 127, 127);">faceted-project</span><span style="color: teal;">></span><span style="color: teal;">
</</span><span style="color: rgb(63, 127, 127);">faceted-project</span><span style="color: teal;">></span>




PS:进行上面的修改以后虽然没有错误了,但是想发布网站demo的时候发现没有【run as】->【run on server】这个选项了。这时候我们创建一个demo2的web project,然后查看.settings下的org.eclipse.wst.common.project.facet.core.xml,我们发现其内容是:

<pre class="code" name="code" style="white-space: pre-wrap; word-wrap: break-word; color: rgb(51, 51, 51); font-size: 14px; line-height: 26px; background-color: rgb(255, 255, 255);"><span style="color: teal;"><?</span><span style="color: rgb(63, 127, 127);">xml </span><span style="color: rgb(127, 0, 127);">version</span>=<span style="color: rgb(42, 0, 255);">"1.0" </span><span style="color: rgb(127, 0, 127);">encoding</span>=<span style="color: rgb(42, 0, 255);">"UTF-8" </span><span style="color: teal;">?>
<</span><span style="color: rgb(63, 127, 127);">faceted-project</span><span style="color: teal;">>
<</span><span style="color: rgb(63, 127, 127);">runtime </span><span style="color: rgb(127, 0, 127);">name</span>=<span style="color: rgb(42, 0, 255);">"Apache Tomcat v6.0.29" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">fixed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"jst.web" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">fixed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"java" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">fixed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"wst.jsdt.web" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">installed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"java" </span><span style="color: rgb(127, 0, 127);">version</span>=<span style="color: rgb(42, 0, 255);">"1.6" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">installed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"jst.web" </span><span style="color: rgb(127, 0, 127);">version</span>=<span style="color: rgb(42, 0, 255);">"2.5" </span><span style="color: teal;">/>
<</span><span style="color: rgb(63, 127, 127);">installed </span><span style="color: rgb(127, 0, 127);">facet</span>=<span style="color: rgb(42, 0, 255);">"wst.jsdt.web" </span><span style="color: rgb(127, 0, 127);">version</span>=<span style="color: rgb(42, 0, 255);">"1.0" </span><span style="color: teal;">/>
</</span><span style="color: rgb(63, 127, 127);">faceted-project</span><span style="color: teal;">></span>




那么我们只需要将该代码拷贝到网站demo下的.settings目录下,将原来的org.eclipse.wst.common.project.facet.core.xml覆盖即可。覆盖以后我们在Eclipse就能够使用【run as】->【run on server】来发布demo了。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: