This guide provides step-by-step instructions to help you configure and deploy the Advancing Controller effectively.
DROP DATABASE advancing;
. Once the database has been dropped, the Liquibase script will automatically re-enable it.Variable | Description | Example Value |
---|---|---|
SPRING_DATASOURCE_URL | JDBC URL for database connection | jdbc:postgresql://jx-onboardingdb:5432/onboarding |
SPRING_DATASOURCE_DRIVERCLASSNAME | JDBC driver class name | org.postgresql.Driver |
SPRING_DATASOURCE_USERNAME | Database username | postgres |
SPRING_DATASOURCE_PASSWORD | Database password | [your-secure-password] |
SPRING_JPA_DATABASE | Database type (accepted values: oracle or postgresql ) | postgresql |
SPRING_JPA_SHOWSQL | Toggle SQL query logging | false |
SPRING_JPA_PROPERTIES_HIBERNATE_DEFAULT_SCHEMA | Default database schema (❗️only for Oracle DBs) | public |
SPRING_LIQUIBASE_CHANGELOG | Path to Liquibase changelog for database migrations | classpath:config/liquibase/master.xml |
Variable | Description | Example Value |
---|---|---|
MANAGEMENT_HEALTH_DB_ENABLED | Enable database health checks | true |