Fix: cannot find symbol @Type(type NumericIdentifierType Convert converter Hibernate 6.x Upgrade Error
Hibernate 6.x Upgrade Errors and Fixes for Java 21, Spring 6.x and Spring Boot 3.x Codebase
"<java class path.java:12: error: cannot find symbol
@Type(type = ""com.ent.domainmodel.support.NumericIdentifierType"")
^
symbol: method type()
location: @interface Type"
Fix:
Reafctor the code to use @Convert and converter annotation as @Type is no longer supported in Hibernate 6.x
@Convert(converter = com.ent.domainmodel.support.NumericIdentifierType.class)
Comments