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

Hibernate Stateless Session Test

Hibernate Devoxx 2022 talk During Devoxx 2022 in Belgium I attended the Hibernate talk ORM, 20 years later by Mr. King, on of the founders of Hibernate. The first version of Hibernate was released at 23 May 2001. My first encounter with Hibernate was in 2002 at my first job at Compuware. I worked from 2002 to 2007 on a code genaration tool OptimalJ that created initially a 3 tier (client / businesslogic / database) application using EJBs, Hibernate allowed us to skip the EJB layer and generate a more lightweight 3-tier application....

21 December, 2022 · 3 min · 570 words · R.M. Morrien