Skip to content

Instantly share code, notes, and snippets.

@jogaco
Created May 21, 2017 18:09
Show Gist options
  • Save jogaco/b595ef0b2af17963bb8c80425be84159 to your computer and use it in GitHub Desktop.
Save jogaco/b595ef0b2af17963bb8c80425be84159 to your computer and use it in GitHub Desktop.
Spring Boot Tutorial: hibernate.properties
# https://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html
# Must use @...@ instead of ${...}
hibernate.dialect=@hibernate.dialect@
# Needed by Hibernate3 Maven Plugin defined in pom.xml
hibernate.connection.username= @jdbc.username@
hibernate.connection.password=@jdbc.password@
hibernate.connection.url=@jdbc.url@
hibernate.connection.driver_class=@jdbc.driverClassName@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment