Advertisement
Guest User

Untitled

a guest
Feb 25th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. spring.datasource.url = jdbc:oracle:thin:@//127.0.0.1:32118/XE
  2. spring.datasource.username =****
  3. spring.datasource.password =****
  4. #spring.datasource.driver-class-name==oracle.jdbc.driver.OracleDriver
  5.  
  6. # Show or not log for each sql query
  7. spring.jpa.show-sql = true
  8.  
  9. # Hibernate ddl auto (create, create-drop, update)
  10. spring.jpa.hibernate.ddl-auto = create
  11.  
  12. # Use spring.jpa.properties.* for Hibernate native properties (the prefix is
  13. # stripped before adding them to the entity manager)
  14.  
  15. # The SQL dialect makes Hibernate generate better SQL for the chosen database
  16. spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.Oracle12cDialect
  17.  
  18. ERROR com.zaxxer.hikari.pool.HikariPool.throwPoolInitializationException.595 - HikariPool-1 - Exception during pool initialization.
  19. java.sql.SQLException: ORA-28009: connection as SYS should be as SYSDBA or SYSOPER
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement