ninjaframework / ninja

Ninja is a full stack web framework for Java. Rock solid, fast and super productive.
http://www.ninjaframework.org
Apache License 2.0
1.91k stars 521 forks source link

org.hibernate.HibernateException: HHH000142: Javassist Enhancement failed: models.Article #758

Open giovannijunior opened 6 months ago

giovannijunior commented 6 months ago

I created a new Ninja application using the ninja-servlet-jpa-blog-archetype, version 7.0.0. When executing it on Java 18 or 21, I got the error below, which I could work around by declaring a newer version of Javassist in the application’s pom.xml:

org.hibernate.HibernateException: HHH000142: Javassist Enhancement failed: models.Article

<dependency>
<groupId>org.javassist</groupId>
<artifactId>javassist</artifactId>
<version>3.25.0-GA</version>
</dependency>