Simple ToDO Maven Application on Spring & PostrgeSQL
- Add application.properties file to src/main/java/resources
- Add Postgres configuration:
spring.datasource.url=jdbc:postgresql://localhost:5432/tododata
spring.datasource.username=xxxxx
spring.datasource.password=xxxxx
spring.jpa.show-sql=true
## Hibernate Properties
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
spring.jpa.hibernate.ddl-auto = update