@ServiceConnection 썸네일형 리스트형 (spring boot 3.1 이상) 간단한 설정(@ServiceConnection)으로 testcontainer 사용하기 SpringBoot 3.1 이후로 testcontainer 를 지원하기 시작하면서 자동 설정기능이 등장했다. 기존 버전에서는 testcontainer를 생성하면서 사용자 id, password 등의 값을 변경하는등 귀찮은 작업들이 필요했지만 @ServiceConnection 어노테이션의 등장으로 이런 것들이 필요 없어 졌다. 아래는 mysql 을 testcontainer 로 띄워서 테스트 하는 예제 이다. @TestConfiguration(proxyBeanMethods = false) public class TestContainerConfiguration { @Bean @ServiceConnection MySQLContainer mysqlContainer() { return new MySQLContain.. 더보기 이전 1 다음