From ab36adbbc22fcd156ddce528a9ff5e5103623342 Mon Sep 17 00:00:00 2001 From: Matthias Andreas Benkard Date: Sun, 20 Mar 2022 16:10:42 +0100 Subject: Use Blaze Persistence for criteria queries. Blaze Persistence is more flexible, but also less type-safe than JPA Criteria. This change explores what the changes look like and how efficient the resulting queries are. Change-Id: Ia47e4f0280d451e0381f58ece297c5bc06604289 --- src/main/resources/application.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/resources') diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index bbffd39..ee95952 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,5 +1,3 @@ -quarkus.log.console.color = true - quarkus.log.level = INFO #quarkus.log.category."org.hibernate".level = INFO #quarkus.log.category."io.quarkus.oidc".level = FINEST @@ -16,6 +14,8 @@ quarkus.datasource.jdbc.driver = org.postgresql.Driver quarkus.datasource.jdbc.max-size = 8 quarkus.datasource.jdbc.min-size = 0 +quarkus.hibernate-orm.metadata-builder-contributor = eu.mulk.mulkcms2.common.hibernate.HibernateMetadataBuilderContributor + quarkus.liquibase.migrate-at-start = true %dev.quarkus.datasource.jdbc.url = jdbc:postgresql://localhost:5432/mulkcms -- cgit v1.2.3