Quarkus Hibernate Stateless Session

Quarkus project setup for hibernate-orm module After testing Hibernate and the Stateless Session I wanted to know what is supported out of the box in Quarkus with the Jakarta Persistence api. The best start page I could find when using Java and Maven is: https://quarkus.io/guides/maven-tooling#build-tool-maven First create a new maven module as described: mvn io.quarkus.platform:quarkus-maven-plugin:2.15.0.Final:create -DprojectGroupId=nl.escay -DprojectArtifactId=quarkus.hibernate.stateless.session I updated the pom.xml to use version 3.0.0.Alpha6 which allows me to test the latest Hibernate....

24 December, 2022 · 6 min · 1189 words · R.M. Morrien