18 lines
696 B
Properties
18 lines
696 B
Properties
spring.datasource.url=jdbc:postgresql://localhost:54320/postgres
|
|
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
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
|
|
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
|
|
|
|
# Hibernate ddl auto (create, create-drop, validate, update)
|
|
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 |