37 lines
927 B
YAML
37 lines
927 B
YAML
spring:
|
|
application:
|
|
name: @project.artifactId@
|
|
artemis:
|
|
broker-url: ${BROKER_URL:tcp://localhost:61616}
|
|
user: ${BROKER_USER:admin}
|
|
password: ${BROKER_PASSWORD:admin}
|
|
|
|
datasource:
|
|
url: ${JDBC_URL:jdbc:postgresql://localhost:25060/db}
|
|
username: ${JDBC_USERNAME:admin}
|
|
password: ${JDBC_PASSWORD:admin}
|
|
driver-class-name: org.postgresql.Driver
|
|
hikari:
|
|
maximum-pool-size: 100
|
|
minimum-idle: 1
|
|
platform: postgres
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: validate
|
|
show-sql: false
|
|
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
|
|
|
|
destinations:
|
|
pricing:
|
|
priceSave: PricingSave
|
|
priceDlq: PricingSave.dlq
|
|
gateway:
|
|
gatewayDlq: DBGateway.dlq
|
|
|
|
server:
|
|
port: 9090 |