如何从 Testcontainer 的应用程序文件加载属性?

发布于 2025-01-17 07:00:58 字数 445 浏览 0 评论 0原文

目前,我正在使用Testcontainer来实现Spring Boot中数据库的集成测试。如何使用 application.yml 初始化 Testcontainer。我不想使用@DynamicPropertySource。

public static PostgreSQLContainer container = new PostgreSQLContainer("postgres:12")
spring:
  datasource:
    driverClassName: org.postgresql.Driver
    url: jdbc:postgresql://localhost:5432/db
    username: user
    password: password

Currently, I am using Testcontainer to implement integration testing for database in spring boot. How do I init the Testcontainer with the application.yml. I don't want to use @DynamicPropertySource.

public static PostgreSQLContainer container = new PostgreSQLContainer("postgres:12")
spring:
  datasource:
    driverClassName: org.postgresql.Driver
    url: jdbc:postgresql://localhost:5432/db
    username: user
    password: password

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

是你 2025-01-24 07:00:58

您只需将 tc 添加到 spring.datasource.url 属性即可。

spring:
  datasource:
    driverClassName: org.testcontainers.jdbc.ContainerDatabaseDriver
    url: jdbc:tc:postgresql:12:///db?TC_TMPFS=/testtmpfs:rw
    username: user
    password: password

我不想使用 application.yaml,只是创建 application-test.yaml 并覆盖默认值。您可以检查 https://www.testcontainers.org/modules/databases/jdbc/。

您也可以使用 @testpropertysource 注释进行覆盖。

You can simply add tc to you spring.datasource.url property.

spring:
  datasource:
    driverClassName: org.testcontainers.jdbc.ContainerDatabaseDriver
    url: jdbc:tc:postgresql:12:///db?TC_TMPFS=/testtmpfs:rw
    username: user
    password: password

I prefer not to use application.yaml just create application-test.yaml and override default one. You can check https://www.testcontainers.org/modules/databases/jdbc/.

Also you can override with @testpropertysource annotation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文