[jbosstools-issues] [JBoss JIRA] Commented: (JBIDE-1014) Generated entities error

Denis Golovin (JIRA) jira-events at lists.jboss.org
Thu Oct 11 03:41:03 EDT 2007


    [ http://jira.jboss.com/jira/browse/JBIDE-1014?page=comments#action_12381603 ] 
            
Denis Golovin commented on JBIDE-1014:
--------------------------------------

I cannot reproduce the code. What kind of table should be used to generate that kind of code? with compound primary key?
Should we fix template in Seam_1_2_1.AP branch?

> Generated entities error
> ------------------------
>
>                 Key: JBIDE-1014
>                 URL: http://jira.jboss.com/jira/browse/JBIDE-1014
>             Project: JBoss Tools
>          Issue Type: Bug
>          Components: Seam, UpStream
>    Affects Versions: 2.0.0.Beta4
>         Environment: RHDS 1.0.0 beta 2
> JDK 1.5.0_12
>            Reporter: Slava Litskevich
>             Fix For: 2.0.0.CR1
>
>
> 1. Generate entities for the project using New -> Seam Generate Entities (Reverse Engineer from database)
> Entities are generated. There is an error message in the Problems section: Entity "Employee" has no Id or EmbeddedId	
> Employee entity has the following method:
> ...
>     public Employee(EmployeeId id) {
>        this.id = id;
>     }
>    
>      @EmbeddedId
>     
>     @AttributeOverrides( {
>         @AttributeOverride(name="id", column=@Column(name="ID", nullable=false) ), 
>         @AttributeOverride(name="name", column=@Column(name="NAME", nullable=false) ), 
>         @AttributeOverride(name="startDate", column=@Column(name="START_DATE", length=0) ) } )
>     @NotNull
>     public EmployeeId getId() {
>         return this.id;
>     }
> ...
> If I remove empty line in getId method annotations error message disappears:
>  
> ...
>      @EmbeddedId
>     @AttributeOverrides( {
>         @AttributeOverride(name="id", column=@Column(name="ID", nullable=false) ), 
>         @AttributeOverride(name="name", column=@Column(name="NAME", nullable=false) ), 
>         @AttributeOverride(name="startDate", column=@Column(name="START_DATE", length=0) ) } )
>     @NotNull
>     public EmployeeId getId() {
>         return this.id;
>     }
> ...

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jbosstools-issues mailing list