Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. spring.jpa.database=POSTGRESQL
  2. spring.datasource.platform=postgres
  3. spring.datasource.url=jdbc:postgresql://Host:Port/DatabaseName?ssl=true&sslfactory=org.postgresql.ssl.NonValidatingFactory
  4. spring.datasource.username=User
  5. spring.datasource.password=Password
  6. spring.datasource.driver-class-name=org.postgresql.Driver
  7.  
  8. spring.datasource.testWhileIdle=true
  9. spring.datasource.validationQuery=SELECT 1
  10. spring.datasource.timeBetweenEvictionRunsMillis=3600000
  11. spring.jpa.show-sql=true
  12. spring.jpa.hibernate.ddl-auto=create-drop
  13.  
  14. spring.jpa.hibernate.naming-strategy=org.hibernate.cfg.ImprovedNamingStrategy
  15. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
  16.  
  17.  
  18. spring.jpa.properties.jadira.usertype.autoRegisterUserTypes=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement