Last active
May 17, 2021 03:54
spring boot 2 application.yml for oracle connection
This file contains 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