Skip to main content
Version: 6.10.1

Oracle Database Configuration

If Oracle is the DBMS to be used, ensure it is installed before performing any other step.

Define Connection Parameters

Add the following connection parameters to application.properties file:

spring.datasource.url=jdbc:oracle:thin://@[host]:[port]/[service_name]
spring.datasource.username=[database_username]
spring.datasource.password=[database_password]

An example of a valid spring.datasource.url is jdbc:oracle:thin://@127.0.0.1:1521/XE