如何让Eclipse在Tomcat的类路径上获取所有资源?

时间:2010-01-12 17:22:59

标签: eclipse debugging tomcat maven-2

我有一段时间让Eclipse在tomcat上运行我的webapp并且类路径正确。我有一些引用classpath属性文件的spring配置:/whatever.properties - 这些属性文件存放在我的web项目src \ main \ resources中,我可以看到它们被部署到WEB-INF \ classes文件夹中,但是他们没有被接走。此外,即使代码已运行(通过记录验证),我的自定义spring属性提供程序中的断点也不会被命中。

.project片段:

 <buildSpec>
  <buildCommand>
   <name>org.maven.ide.eclipse.maven2Builder</name>
   <arguments>
   </arguments>
  </buildCommand>
  <buildCommand>
   <name>org.eclipse.jdt.core.javabuilder</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>
 </buildSpec>
 <natures>
  <nature>org.eclipse.jdt.core.javanature</nature>
  <nature>org.maven.ide.eclipse.maven2Nature</nature>
  <nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
  <nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
  <nature>org.eclipse.wst.common.project.facet.core.nature</nature>
 </natures>

.classpath片段:

<classpath>
 <classpathentry kind="src" path="src/main/java"/>
 <classpathentry kind="src" path="src/main/resources"/>
 <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
 <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
 <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER">
  <attributes>
   <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
  </attributes>
 </classpathentry>
 <classpathentry combineaccessrules="false" kind="src" path="/OtherProject"/>
 <classpathentry kind="con" path="org.eclipse.jst.server.core.container/org.eclipse.jst.server.tomcat.runtimeTarget/Tomcat v5.5 Server"/>
 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.5.0_16"/>
 <classpathentry kind="output" path="target/classes"/>
</classpath>

org.eclipse.wst.common.component:

<project-modules id="moduleCoreId" project-version="1.5.0">
    <wb-module deploy-name="Web Module">
        <wb-resource deploy-path="/" source-path="/src/main/webapp"/>
        <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
        <wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
 <dependent-module deploy-path="/WEB-INF/lib" handle="module:/resource/OtherProject/OtherProject">
  <dependency-type>uses</dependency-type>
 </dependent-module>
        <property name="context-root" value="WebModule"/>
        <property name="java-output-path"/>
    </wb-module>
</project-modules>

我尝试使用Tomcat的位置(右键单击服务器,选择属性)在工作区元数据中,并使用它生活在Servers项目中。我尝试过使用工作区元数据部署,让eclipse接管我的tomcat安装,以及自定义部署位置。它已经工作过一次 - 断点命中,属性读取 - 但是当我下次再次启动服务器时,它又恢复了原来的状态。

如果您需要更多信息,请告诉我,我会尽快编辑该帖子。

1 个答案:

答案 0 :(得分:1)

使用Eclipse工具部署到Tomcat的一些背景知识: 1.您的Web项目将捆绑并复制到一个位置。然后,此位置将用作Tomcat的Web应用程序的位置。 2. .project和.classpath文件不用作Tomcat部署的一部分。这些是Eclipse工作台特有的开发时间工件。

您是否确认属性文件已正确部署到捆绑的项目位置(上面的1)?