Skip to content

Instantly share code, notes, and snippets.

@mguilherme
Last active May 17, 2021 03:54
spring boot 2 application.yml for oracle connection
spring:
jpa:
database-platform: org.hibernate.dialect.Oracle10gDialect
open-in-view: true
hibernate:
ddl-auto: none
# ddl-auto: create-drop
# ddl-auto: validate
datasource:
url: jdbc:oracle:thin:@localhost:1521:XE
username: test_user
password: test_user
driver-class-name: oracle.jdbc.OracleDriver
logging:
level:
org.hibernate.SQL: DEBUG
org.hibernate.type.descriptor.sql.BasicBinder: TRACE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment