Advertisement
Guest User

Untitled

a guest
May 6th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. # Hibernate SQL dialect
  2. connection.dialect = org.hibernate.dialect.PostgreSQLDialect
  3.  
  4. # JDBC driver class
  5. connection.driver_class = org.postgresql.Driver
  6.  
  7. # JDBC driver connection URL
  8. connection.url = jdbc:postgresql://${RDS_HOSTNAME}:${RDS_PORT}/${RDS_DB_NAME}
  9.  
  10. # Database username
  11. connection.username = ${RDS_USERNAME}
  12.  
  13. # Database password
  14. connection.password = ${RDS_PASSWORD}
  15.  
  16. # Database schema behavior, can be validate, update, create, create-drop
  17. connection.schema = update
  18.  
  19. # Encryption password (not used for now)
  20. # encryption.password = xxxx
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement