├── .gitignore ├── LICENSE ├── pom.xml ├── profiles-service-jdbc ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── profiles │ │ │ └── ProfilesApplication.java │ └── resources │ │ ├── application.properties │ │ ├── schema.sql │ │ └── static │ │ └── profiles.html │ └── test │ └── java │ └── com │ └── example │ └── profiles │ └── ProfilesApplicationTests.java ├── profiles-service-mongo ├── pom.xml └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── profiles │ │ │ └── ProfilesApplication.java │ └── resources │ │ ├── application.properties │ │ └── static │ │ └── profiles.html │ └── test │ └── java │ └── com │ └── example │ └── profiles │ └── ProfilesApplicationTests.java └── spring-boot-devtools-autoservices ├── pom.xml └── src └── main ├── java └── org │ └── springframework │ └── boot │ └── devtools │ └── autoservices │ └── TestcontainersSpringApplicationRunListener.java └── resources └── META-INF └── spring.factories /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/LICENSE -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/pom.xml -------------------------------------------------------------------------------- /profiles-service-jdbc/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-jdbc/pom.xml -------------------------------------------------------------------------------- /profiles-service-jdbc/src/main/java/com/example/profiles/ProfilesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-jdbc/src/main/java/com/example/profiles/ProfilesApplication.java -------------------------------------------------------------------------------- /profiles-service-jdbc/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-jdbc/src/main/resources/application.properties -------------------------------------------------------------------------------- /profiles-service-jdbc/src/main/resources/schema.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE IF NOT EXISTS profile(id serial primary key, name varchar(255) not null); -------------------------------------------------------------------------------- /profiles-service-jdbc/src/main/resources/static/profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-jdbc/src/main/resources/static/profiles.html -------------------------------------------------------------------------------- /profiles-service-jdbc/src/test/java/com/example/profiles/ProfilesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-jdbc/src/test/java/com/example/profiles/ProfilesApplicationTests.java -------------------------------------------------------------------------------- /profiles-service-mongo/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-mongo/pom.xml -------------------------------------------------------------------------------- /profiles-service-mongo/src/main/java/com/example/profiles/ProfilesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-mongo/src/main/java/com/example/profiles/ProfilesApplication.java -------------------------------------------------------------------------------- /profiles-service-mongo/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | logging.level.org.springframework.boot.devtools.restart=DEBUG -------------------------------------------------------------------------------- /profiles-service-mongo/src/main/resources/static/profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-mongo/src/main/resources/static/profiles.html -------------------------------------------------------------------------------- /profiles-service-mongo/src/test/java/com/example/profiles/ProfilesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/profiles-service-mongo/src/test/java/com/example/profiles/ProfilesApplicationTests.java -------------------------------------------------------------------------------- /spring-boot-devtools-autoservices/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/spring-boot-devtools-autoservices/pom.xml -------------------------------------------------------------------------------- /spring-boot-devtools-autoservices/src/main/java/org/springframework/boot/devtools/autoservices/TestcontainersSpringApplicationRunListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/spring-boot-devtools-autoservices/src/main/java/org/springframework/boot/devtools/autoservices/TestcontainersSpringApplicationRunListener.java -------------------------------------------------------------------------------- /spring-boot-devtools-autoservices/src/main/resources/META-INF/spring.factories: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joshlong/testcontainers-auto-services-prototype/HEAD/spring-boot-devtools-autoservices/src/main/resources/META-INF/spring.factories --------------------------------------------------------------------------------