Showing
3 changed files
with
9 additions
and
0 deletions
... | ... | @@ -4,6 +4,7 @@ database.entities.type=sql |
4 | 4 | sql.ts_inserts_executor_type=fixed |
5 | 5 | sql.ts_inserts_fixed_thread_pool_size=10 |
6 | 6 | |
7 | +spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true | |
7 | 8 | spring.jpa.show-sql=false |
8 | 9 | spring.jpa.hibernate.ddl-auto=validate |
9 | 10 | spring.jpa.database-platform=org.hibernate.dialect.HSQLDialect | ... | ... |
... | ... | @@ -442,6 +442,12 @@ |
442 | 442 | <groupId>org.springframework.boot</groupId> |
443 | 443 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
444 | 444 | <version>${spring-boot.version}</version> |
445 | + <exclusions> | |
446 | + <exclusion> | |
447 | + <groupId>net.bytebuddy</groupId> | |
448 | + <artifactId>byte-buddy</artifactId> | |
449 | + </exclusion> | |
450 | + </exclusions> | |
445 | 451 | </dependency> |
446 | 452 | <dependency> |
447 | 453 | <groupId>org.apache.kafka</groupId> | ... | ... |