Implement user service and controller with CRUD functions
[alyverkko.git] / src / main / resources / application.properties
1 spring.application.name=alyverkko
2
3 spring.datasource.url=jdbc:postgresql://localhost:5432/your_database
4 spring.datasource.username=your_username
5 spring.datasource.password=your_password
6
7 spring.jpa.hibernate.ddl-auto=update
8 spring.jpa.show-sql=true
9 spring.jpa.properties.hibernate.format_sql=true
10
11 spring.thymeleaf.cache=false