使用Maven Jetty插件部署war时获取FileNotFoundException

时间:2011-08-04 19:51:26

标签: maven-2 maven jetty embedded-jetty maven-jetty-plugin

1 个答案:

答案 0 :(得分:7)

我假设您正在使用运行目标 - 即。 mvn jetty:run?它运行webapp“就地”,这意味着它在target/classes或项目依赖项中查找类,并从src/main/webapp加载Web资源(假设默认目录布局)。它在target/mywar/...中找不到任何内容。你可以使用其中一个jetty plugin goals,但我建议你只需将applicationContext.xml移到类路径中,并使用classpath:/applicationContext.xml作为contextConfigLocation