24 lines
618 B
YAML
24 lines
618 B
YAML
spring:
|
|
application:
|
|
name: @project.artifactId@
|
|
datasource:
|
|
url: ${JDBC_URL}
|
|
username: ${JDBC_USERNAME}
|
|
password: ${JDBC_PASSWORD}
|
|
driver-class-name: org.postgresql.Driver
|
|
hikari:
|
|
maximum-pool-size: 100
|
|
minimum-idle: 1
|
|
platform: postgres
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: validate
|
|
show-sql: true
|
|
properties:
|
|
org.hibernate.envers.revision_field_name: revision_id
|
|
org.hibernate.envers.revision_type_field_name: revision_type
|
|
org.hibernate.jdbc.lob.non_contextual_creation: true
|
|
format_sql: true
|
|
database: postgresql
|
|
server:
|
|
port: 9090 |