eclipse + maven + tomcat7 + wtp,选中“无需发布服务模块”时无法启动项目

时间:2012-12-29 16:37:49

标签: eclipse maven tomcat7 eclipse-wtp

我在github上的项目:https://github.com/henryyan/kft-activiti-demo

通常未选中“无需发布服务模块”,即可启动项目。检查发生错误后(Tomcat6没问题!!!):

  

引起:java.io.FileNotFoundException:/Users/henryyan/work/projects/activiti/kft-activiti-demo/src/main/webapp/WEB-INF/classes/applicationContext.xml(没有这样的文件或目录)

为什么从“ src ”中找到文件“applicationContext.xml”,它应该是目标/类。

完整日志:https://gist.github.com/4407208

1 个答案:

答案 0 :(得分:0)

我认为您需要在maven-war-plugin中将您的资源添加为网络资源:

<plugin>
   <artifactId>maven-war-plugin</artifactId>
   <version>2.1.1</version>
   <configuration>
      <webResources>
         <resource>                      
            <directory>src/main/resources</directory>
            <filtering>true</filtering>
         </resource>
      </webResources>
   </configuration>
</plugin>