I get this WARN on startup in my server.log.
07:40:24,477 INFO [org.hibernate.Version] (ServerService Thread Pool -- 81) HHH000412: Hibernate Core {5.3.28.Final}
07:40:29,490 WARN [org.hibernate.orm.deprecation] (ServerService Thread Pool -- 81) HHH90000014: Found use of deprecated [org.hibernate.id.SequenceGenerator] sequence-based id generator; use org.hibernate.id.enhanced.SequenceStyleGenerator instead. See Hibernate Domain Model Mapping Guide for details.
So fix the deprecated usage right? Only I can't find it anywhere.
Currently on WildFly 26 but the warning has been with us since Wildfly 20 and possibly earlier. My source code has no references to the deprecated class. The closest thing I see to it is in a persistence.xml file containing:
<property name="hibernate.id.new_generator_mappings" value="false" />
Any ideas where I might hunt and find this usage? Is Wildfly the culprit (does Wildfly use hibernate?) or should I be looking at other components?