1spring.main.banner-mode=off
2logging.level.org.springframework=ERROR
3
4spring.jpa.hibernate.ddl-auto=none
5
6spring.datasource.initialization-mode=always
7spring.datasource.platform=postgres
8spring.datasource.url=jdbc:postgresql://localhost:5432/testdb
9spring.datasource.username=postgres
10spring.datasource.password=s$cret
11
12spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true
13
1<dependency>
2 <groupId>org.postgresql</groupId>
3 <artifactId>postgresql</artifactId>
4 <version>42.2.18</version>
5</dependency>