Skip to main content
Version: 3.2

Datasource Properties

Refer to the following table for available Datasource properties:

PropertyDescriptionDefault
spring.datasource.driver-class-nameJDBC Driver class name for the persistence instance (org.h2.Driver | com.microsoft.sqlserver.jdbc.SQLServerDriver | com.mysql.jdbc.Driver)org.h2.Driver
spring.datasource.urlJDBC URL String for connection to the persistence instancejdbc:h2:{sharedDataPath}/embedded/data/h2; DB_CLOSE_ON_EXIT=FALSE
spring.datasource.initialization-modeNote: This function is delegated to liquibase. Do not edit.never
spring.datasource.continue-on-error(true | false)
By default, Spring Boot enables the fail-fast feature of the Spring JDBC initializer. This means that, if the scripts cause exceptions, the application fails to start.
false
spring.liquibase.change-logLocation of the liquibase change-log, which drives database initialization and database updates for newer versions.classpath:db.changelog-master.xml