Custom UserType not supported in Hibernate's static MetaModel generator
-----------------------------------------------------------------------
Key: METAGEN-28
URL:
http://opensource.atlassian.com/projects/hibernate/browse/METAGEN-28
Project: Hibernate Metamodel Generator
Issue Type: Bug
Affects Versions: 1.0.0-CR-1
Reporter: jean-claude cote
Assignee: Hardy Ferentschik
Priority: Minor
If an Entity has a custom Hibernate User type @Type it will not get generated in the
static MetaModel class "Item_".
This seems easy to fix by checking if the element being process has a @Type annotation
then process it.
AnnotationMetaEntity.isBasicAttribute()
...
if(TypeUtils.containsAnnotation(element, Type.class)
{
return true;
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://opensource.atlassian.com/projects/hibernate/secure/Administrators....
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira