e1305e8c
sfeutrie
projet Spring boo...
|
1
2
3
4
5
6
7
8
9
10
|
#-----------------------------------------------#
#---------- Spring Database management ---------#
#-----------------------------------------------#
spring.jpa.hibernate.ddl-auto=update
#"create" if the database doesn't exist : it will reinitialize the DB every time the process is restarted
#"update" if the database already exists
spring.datasource.url=jdbc:postgresql://localhost/sql_only
spring.datasource.username=postgres
spring.datasource.password=idalurf123
|