我正在使用Spring Boot开发一个微服务应用程序.
我的应用程序将使用Postgres DB进行生产配置,并使用Spring Boot自动测试H2 DB.
因此,我的pom.xml包括两个依赖项(H2 Postgres).我尝试将H2依赖项与tes范围关联,并将Postgres与运行时关联,如下所示:
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>test</scope>
</dependency>
我可以看到在运行mvn test时,Spring Boot默认选择postgres数据库,而该数据库在我的单元测试环境中不存在.这就是为什么我更喜欢使用H2进行单元测试的原因.
是否有正确的方法告诉Spring Boot使用H2进行测试,否则使用Postgres?
我不知道使用不同的application.properties文件(一个在src / main / resources中,另一个在src / test / resources中)是否可以解决问题.
解决方法:
您应该注意,有多个类路径,例如:
>编译时的类路径,
>运行时类路径,
>测试类路径.
当您使用< scope> runtime< / scope>时,依赖关系在两个运行时类路径中都可以作为测试类路径使用,如the documentation所述:
This scope indicates that the dependency is not required for compilation, but is for execution. It is in the runtime and test classpaths, but not the compile classpath.
这意味着即使在执行测试时,如果使用< scope> runtime< / scope>,Postgres仍将位于类路径中.
通过提供两个单独的application.properties,您提到的解决方案是正确的选择.
在src / main / resources / application.properties中,您可以这样配置数据源:
spring.datasource.url=jdbc:postgresql://localhost:5432/mydatabase
在src / test / resources / application.properties中,您可以这样配置数据源:
spring.datasource.url=jdbc:h2:mydatabase
如果您需要更细粒度的控制,则可以使用Spring配置文件.例如,您可以使用一个名为“ testdb”的配置文件,然后使用@ActiveProfiles(“ testdb”)注释测试.
现在,您可以创建一个名为application-testdb.properties的文件,并添加设置测试数据库所需的属性.