Hibernate configuration property not supported by Quarkus application.properties

315 Views Asked by At

I am using Quarkus 2.9.2.Final and would like to set a Hibernate config parameter, which is not one of the "chosen ones" which can go into Quarkus' application.properties as per the documentation.

Specifically I would like to set this Hibernate configuration property:

<property name="hibernate.hql.bulk_id_strategy"
          value="org.hibernate.hql.spi.id.inline.InlineIdsInClauseBulkIdStrategy"
/>

to prevent Hibernate from generating temporary tables (as described here).

How can I achieve this?

1

There are 1 best solutions below

0
On

Have you tried the quarkus.hibernate-orm.unsupported-properties (ref) config?