gpt4 book ai didi

java - 在 maven 中测试时 Spring-Data h2 : java. io.FileNotFoundException

转载 作者:行者123 更新时间:2023-12-02 13:22:55 25 4
gpt4 key购买 nike

我对 spring 与 h2 的结合有疑问。我使用 h2 数据库进行测试,但我有一个非常奇怪的行为。

我的依赖项:

...
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
...

我将测试的 jdbc 连接字符串设置为:

spring.datasource.url=jdbc:h2:mem:dataSource

不考虑基本测试:

@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {
@Test
public void contextLoads() {
}
}

如果我运行

mvn test

在我的pom所在的同一目录中,一切正常。但是如果在父目录下执行这个命令

mvn -f ./xxx/pom.xml test

测试没有成功。

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: Unable to resolve persistence unit root URL

如何在父目录中运行测试?

最佳答案

尝试一下 mvn -f xxx/pom.xml 测试

关于java - 在 maven 中测试时 Spring-Data h2 : java. io.FileNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43500846/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com