Spring boot web war - 找不到web-inf / classes / context.xml文件

时间:2014-08-01 02:33:47

标签: java spring tomcat

当我将基于Spring boot的项目部署到tomcat时,服务器无法找到persistence-context.xml下的WEB-INF/classes。我在tomcat控制台上收到以下错误

 java.io.FileNotFoundException: Could not open ServletContext resource [/persistence-context.xml]

我有以下Spring Boot WS应用程序的结构:

src/main/java/hello/
                   Application.java
                   HelloWebXml.java

src/main/resources/
                   persistence-context.xml

以下是我的课程

@ComponentScan("foo.bla.bar")
@ImportResource("classpath:persistence-context.xml")
@Configuration
@EnableAutoConfiguration
public class Application {

    public static void main(final String[] args) {
        SpringApplication.run(Application.class, args);
    }
}

以下是WebXml类。

public class HelloWebXml extends SpringBootServletInitializer {

@Override
protected SpringApplicationBuilder configure(final SpringApplicationBuilder application) {
    return application.sources(Application.class);
}
}

以下是我的pom.xml文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.foo.bar</groupId>
<artifactId>bar-ws</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.1.4.RELEASE</version>
</parent>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
</dependencies>

<properties>
    <start-class>bla.bar.Application</start-class>
</properties>

<build>
    <plugins>
        <plugin> 
            <artifactId>maven-compiler-plugin</artifactId> 
        </plugin>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
        </plugin>
    </plugins>
</build>
</project>

我正在构建此项目的war文件。任何人都可以指导我如何解决这个问题? 感谢

1 个答案:

答案 0 :(得分:0)

@ImportResource("classpath:persistence-context.xml")

工作正常只是不要忘记将persistence-context.xml放在webapp文件夹下,因为在Web项目中它被视为类路径。

将文件放在src/main/resources下,然后尝试以这种方式阅读,在这种情况下你永远不会遇到路径问题。

String pathOfTheResurceFile = Thread.currentThread().getContextClassLoader()
                                    .getResource("yourFileName").getPath();