Spring Boot 3.1 中改進的 Testcontainers 支援
Spring Boot 一段時間以來一直支援 Testcontainers,而 Spring Boot 3.1 進一步改進了它。 但首先,讓我們看看 Testcontainers 是什麼以及它通常如何使用。
Testcontainers 是一個開放原始碼框架,用於提供可拋棄的、輕量級的資料庫、訊息代理、Web 瀏覽器或幾乎任何可以在 Docker 容器中運行的實例。
如果您過去使用過 Testcontainers,那麼您很有可能在整合測試中使用過它們
@SpringBootTest
@Testcontainers
class MyIntegrationTests {
@Container
static…