作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用此依赖项:
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>postgresql</artifactId>
<version>1.5.1</version>
<scope>test</scope>
</dependency>
@ClassRule
public static PostgreSQLContainer postgres = new PostgreSQLContainer()
.withDatabaseName("user")
.withUsername("postgres")
.withPassword("postgres");
user
我收到异常:
PSQLException: FATAL: database "user" does not exist
"postgres"
.
"user"
?
最佳答案
问题是因为容器返回带有随机端口的 JDBC_URL,并且默认端口可访问默认 Postgres DB,但您需要一个在随机端口上
这是解决方法:
@ClassRule
public static DockerComposeContainer environment =
new DockerComposeContainer(new File("src/test/resources/docker-compose-postgres.yml"))
.withExposedService("postgres-it", 5432);
version: "2"
services:
postgres-it:
image: postgres
ports:
- 5432:5432
hostname: postgres-it
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: user
关于testcontainers - 如何在 TestContainers 中创建数据库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48306691/
我是一名优秀的程序员,十分优秀!