| Hi Gail, from the Hibernate User Guide (http://docs.jboss.org/hibernate/orm/5.2/userguide/html_single/Hibernate_User_Guide.html) the section "2.8.12. Custom collection types" was introduced at 5.2 doc release. Is it correct from the doc perspective since it is supported for a longe time? For an old version, 5.0.x for example, we are not able to use the code like this: @CollectionType(type = "TestListType") private TestList<..> objects // TestList is an interface, extends List The following code instead works fine: @CollectionType(type = "TestListType") private Collection<..> objects Thanks in advance for your help.
|