I am aware how to configure db connection using jdbc string
#Basic Spring Boot Config for Oracle
spring:
datasource:
url: jdbc:oracle:thin:@host:port:sid
username: user
password: pwd
driver-class-name: oracle.jdbc.OracleDriver
continueOnError: true
How do i do the same if i should be using tnsnames.ora
file ?