[
http://opensource.atlassian.com/projects/hibernate/browse/HHH-6148?page=c...
]
Hardy Ferentschik edited comment on HHH-6148 at 4/21/11 7:13 AM:
-----------------------------------------------------------------
As part of the mapping via annotation the type of persistent properties have to be
discovered. For example in this case:
{code}
@Entity
class Bar<T> {
@Id
@GeneratedValue
private T id;
}
@Entity
public class Foo extends Bar<Integer> {
}
{code}
So far this was the responsibility of commons annotations. Without this library we need a
replacement. Currently I am thinking about
https://github.com/cowtowncoder/java-classmate
was (Author: hardy.ferentschik):
As part of the mapping via annotation the type of persistent properties have to be
discovered. For example in this case:
{code}
@Entity
class Bar<T> {
@Id
@GeneratedValue
private T id;
public int test;
}
@Entity
public class Foo extends Bar<Integer> {
}
{code}
So far this was the responsibility of commons annotations. Without this library we need a
replacement. Currently I am thinking about
https://github.com/cowtowncoder/java-classmate
Resolve generic type parameters
-------------------------------
Key: HHH-6148
URL:
http://opensource.atlassian.com/projects/hibernate/browse/HHH-6148
Project: Hibernate Core
Issue Type: Sub-task
Components: metamodel
Reporter: Hardy Ferentschik
Assignee: Hardy Ferentschik
Fix For: 4.0.0.Alpha3
--
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