Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. # ===============================
  2. # = DATA SOURCE
  3. # ===============================
  4. # Set here configurations for the database connection
  5.  
  6. # =============== Heroku PostgreSQL Database =====================
  7.  
  8. #spring.datasource.url=jdbc:postgresql://ec2-54-75-230-41.eu-west-1.compute.amazonaws.com:5432/dbqup43qrkl1gn?sslmode=require
  9. #spring.datasource.username=ntfvvinbaynbmm
  10. #spring.datasource.password=6ab9358c95f8b7745069fa96b9f1e0ad5c7baf386d2d42d1246f60f295de68aa
  11.  
  12.  
  13. # =============== localhost postgreSQL Database =========================
  14.  
  15. spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
  16. spring.datasource.username=postgres
  17. spring.datasource.password=123
  18.  
  19.  
  20. spring.datasource.driver-class-name=org.postgresql.Driver
  21. # Keep the connection alive if idle for a long time (needed in production)
  22. spring.datasource.testWhileIdle=true
  23. spring.datasource.validationQuery=SELECT 1
  24. # ===============================
  25. # = JPA / HIBERNATE
  26. # ===============================
  27. # Show or not log for each sql query
  28. spring.jpa.show-sql=true
  29. # Hibernate ddl auto (create, create-drop, update): with "create-drop" the database
  30. # schema will be automatically created afresh for every start of application
  31. spring.jpa.hibernate.ddl-auto=update
  32.  
  33. # Naming strategy
  34. spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyHbmImpl
  35. spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
  36.  
  37. # Allows Hibernate to generate SQL optimized for a particular DBMS
  38. spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
  39.  
  40.  
  41. spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement