[hibernate-issues] [Hibernate-JIRA] Resolved: (ANN-803) prob :generics type persistance
Diego Plentz (JIRA)
noreply at atlassian.com
Tue May 5 15:13:17 EDT 2009
[ http://opensource.atlassian.com/projects/hibernate/browse/ANN-803?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Diego Plentz resolved ANN-803.
------------------------------
Resolution: Rejected
Assignee: Diego Plentz
Use http://forum.hibernate.org/
> prob :generics type persistance
> -------------------------------
>
> Key: ANN-803
> URL: http://opensource.atlassian.com/projects/hibernate/browse/ANN-803
> Project: Hibernate Annotations
> Issue Type: Bug
> Affects Versions: 3.4.0.GA
> Reporter: Christophe
> Assignee: Diego Plentz
> Priority: Blocker
>
> I write this code :
> @Entity
> @Table(name = "markunit")
> public class MarkUnit<N> {
> private N content;
> @Id
> @GeneratedValue(strategy = GenerationType.AUTO)
> @Column(name = "id", updatable = false, nullable = false)
> private Long id = null;
> @Column (name = "name")
> private String name;
> .....
> }
> I want to to make persistance with java primitive value or by a bound type list given : date, string, all number...
> but is impossible : MarkUnit.content has an unbound type and no explicit target entity
> please give me an explicit way to resolve this probleme
> best regards
--
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.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the hibernate-issues
mailing list