Last active
May 17, 2021 03:54
-
-
Save mguilherme/2be97cbc8a5bf40056b2b0d8651434b8 to your computer and use it in GitHub Desktop.
spring boot 2 application.yml for oracle connection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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