1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
| spring:
| sql:
| init:
| platform: postgres
|
| datasource:
| url-tc: jdbc:tc:postgresql:13.7-bullseye:///spring_boot_testcontainers
| url: jdbc:postgresql://localhost:5432/postgres
| username: postgres
| password: password
|
| jpa:
| properties:
| hibernate:
| default_schema: public
| dialect: net.hostsharing.hsadminng.config.PostgresCustomDialect
| format_sql: false
| hibernate:
| ddl-auto: none
| show-sql: false
|
| test:
| database:
| replace: none
|
| liquibase:
| change-log: classpath:/db/changelog/db.changelog-master.yaml
| contexts: tc,test,dev
|
| logging:
| level:
| liquibase: INFO
| net.ttddyy.dsproxy.listener: DEBUG
|
|