I’ve just upgraded the version I use for Hibernate to 5.6.1 and it seems it’s now deprecating some Type-related annotations:
import org.hibernate.type.descriptor.java.AbstractTypeDescriptor;
public class JsonTypeDescriptor
extends AbstractTypeDescriptor<Object> implements DynamicParameterizedType {
// implementation goes here
}
I found no documentation as to what to do except that
6.0 will introduce a new series of type-safe annotations to serve the same purpose
Our quality guidelines forces us to try and solve every warning and as such I would like to replace these annotations by a non deprecated use.