我正在开发一个 Spring Boot 应用程序版本 1.3.5.RELEASE,我正在尝试使用 spring-boot-maven-plugin (使用启动/停止目标)实现集成测试。我的 application.properties 文件当前位于 target/test 文件夹中,但是在运行它时,应用程序正在项目的根路径中查找 application.properties 文件。
有谁知道如何在spring boot maven插件中设置工作目录?
我当前的插件配置是:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.3.5.RELEASE</version>
<executions>
<execution>
<id>pre-integration-test</id>
<goals>
<goal>start</goal>
</goals>
<configuration>
<mainClass>o.m.e.Application</mainClass>
</configuration>
</execution>
<execution>
<id>post-integration-test</id>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>