2019-07-17 08:09:42 +00:00
|
|
|
spring.datasource.url=jdbc:postgresql://localhost:54320/postgres
|
2019-07-16 14:56:13 +00:00
|
|
|
spring.datasource.username=postgres
|
|
|
|
spring.datasource.password=root
|
|
|
|
spring.jpa.show-sql=true
|
|
|
|
|
|
|
|
## Hibernate Properties
|
|
|
|
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
2019-07-17 08:09:42 +00:00
|
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
|
|
|
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
|
2019-07-16 14:56:13 +00:00
|
|
|
|
|
|
|
# Hibernate ddl auto (create, create-drop, validate, update)
|
2019-07-17 08:09:42 +00:00
|
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
|
|
spring.jpa.database=postgresql
|
|
|
|
|
|
|
|
logging.level.root=info
|
|
|
|
logging.pattern.console=%d{dd-MM-yyyy HH:mm:ss.SSS} %magenta([%thread]) %highlight(%-5level) %logger.%M - %msg%n
|
|
|
|
|
|
|
|
server.port=8282
|