Skip to content

Instantly share code, notes, and snippets.

@mguilherme
Last active May 17, 2021 03:54
Show Gist options
  • Select an option

  • Save mguilherme/2be97cbc8a5bf40056b2b0d8651434b8 to your computer and use it in GitHub Desktop.

Select an option

Save mguilherme/2be97cbc8a5bf40056b2b0d8651434b8 to your computer and use it in GitHub Desktop.

Revisions

  1. mguilherme revised this gist Jul 16, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion application.yml
    Original file line number Diff line number Diff line change
    @@ -11,7 +11,7 @@ spring:
    url: jdbc:oracle:thin:@localhost:1521:XE
    username: test_user
    password: test_user
    # driver-class-name: oracle.jdbc.driver.OracleDriver
    driver-class-name: oracle.jdbc.OracleDriver

    logging:
    level:
  2. mguilherme revised this gist Jul 16, 2018. 1 changed file with 5 additions and 3 deletions.
    8 changes: 5 additions & 3 deletions application.yml
    Original file line number Diff line number Diff line change
    @@ -1,17 +1,19 @@
    spring:
    jpa:
    database-platform: org.hibernate.dialect.Oracle10gDialect
    open-in-view: true
    hibernate:
    ddl-auto: none
    # ddl-auto: create-drop
    # ddl-auto: validate
    ddl-auto: none

    datasource:
    url: jdbc:oracle:thin:@localhost:1521:XE
    username: test_user
    password: test_user
    driver-class-name: oracle.jdbc.driver.OracleDriver
    # driver-class-name: oracle.jdbc.driver.OracleDriver

    logging:
    level:
    org.hibernate.SQL: DEBUG
    org.hibernate.type.descriptor.sql.BasicBinder: TRACE
    org.hibernate.type.descriptor.sql.BasicBinder: TRACE
  3. mguilherme created this gist Jul 16, 2018.
    17 changes: 17 additions & 0 deletions application.yml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    spring:
    jpa:
    hibernate:
    # ddl-auto: create-drop
    # ddl-auto: validate
    ddl-auto: none

    datasource:
    url: jdbc:oracle:thin:@localhost:1521:XE
    username: test_user
    password: test_user
    driver-class-name: oracle.jdbc.driver.OracleDriver

    logging:
    level:
    org.hibernate.SQL: DEBUG
    org.hibernate.type.descriptor.sql.BasicBinder: TRACE