1

我正在开发一个 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>
4

1 回答 1

0

您可以按如下方式配置 test-property 源路径。

@TestPropertySource(locations = "classpath:application-test.properties")

将此注释添加到正在开发的单元测试类。

例如:-

@SpringApplicationConfiguration(classes = XXXXXXX.class)
@TestPropertySource(locations = "classpath: XXXXXXX.properties")
public class AppCoreGenericTests{

   //unit tests should go here 
}
于 2016-06-28T07:30:14.143 回答