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

Slava Litskevich (JIRA) jira-events at lists.jboss.org
Wed Oct 3 10:40:04 EDT 2007


Generated entities error
------------------------

                 Key: JBIDE-1014
                 URL: http://jira.jboss.com/jira/browse/JBIDE-1014
             Project: JBoss Tools
          Issue Type: Bug
          Components: Seam
    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.Beta4


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