diff --git a/docs/usage/database_containers.md b/docs/usage/database_containers.md index e1ef557a595..9da5af91e81 100644 --- a/docs/usage/database_containers.md +++ b/docs/usage/database_containers.md @@ -49,7 +49,9 @@ Examples/Tests: As long as you have TestContainers and the appropriate JDBC driver on your classpath, you can simply modify regular JDBC connection URLs to get a fresh containerized instance of the database each time your application starts up. -_N.B: TC needs to be on your application's classpath at runtime for this to work_ +_N.B:_ +* _TC needs to be on your application's classpath at runtime for this to work_ +* _For Spring Boot you need to specify the driver manually `spring.datasource.driver-class-name=org.testcontainers.jdbc.ContainerDatabaseDriver`_ **Original URL**: `jdbc:mysql://somehostname:someport/databasename` @@ -112,4 +114,4 @@ and will be able to override server settings when the container starts. VirtuosoContainer provides access to the SPARQL service URL ```java String sparqlServiceUrl = ((VirtuosoContainer)container).getSparqlUrl(); -``` \ No newline at end of file +```