[jbossseam-issues] [JBoss JIRA] Resolved: (JBSEAM-2179) Seam-gen created pages show non-assigned ids

Pete Muir (JIRA) jira-events at lists.jboss.org
Tue Oct 30 06:53:09 EDT 2007


     [ http://jira.jboss.com/jira/browse/JBSEAM-2179?page=all ]

Pete Muir resolved JBSEAM-2179.
-------------------------------

    Fix Version/s: 2.0.0.GA
       Resolution: Cannot Reproduce Bug
         Assignee: Pete Muir

I replicated this using a mysql ddl which generated (trimmed for readability):

@Entity
@Table(name = "Foo", catalog = "release")
public class Foo implements java.io.Serializable {

	private Integer id;
	private String name;

	@Id
	@GeneratedValue(strategy = IDENTITY)
	@Column(name = "id", unique = true, nullable = false)
	public Integer getId() {
		return this.id;
	}

	@Column(name = "name")
	public String getName() {
		return this.name;
	}

}

seam-gen *didn't* generated view/edit section's for id, just for name.

If you can attach a reproducible test case (I only have hsql or mysql) then please reopen.

> Seam-gen created pages show non-assigned ids
> --------------------------------------------
>
>                 Key: JBSEAM-2179
>                 URL: http://jira.jboss.com/jira/browse/JBSEAM-2179
>             Project: JBoss Seam
>          Issue Type: Bug
>          Components: Tools
>            Reporter: Viorel Andronic
>         Assigned To: Pete Muir
>            Priority: Minor
>             Fix For: 2.0.0.GA
>
>
> seam-gen intends to exclude non-assigned id's from the property edit and view pages - seam-gen\view\editproperty.xhtml.ftl, seam-gen\view\viewproperty.xhtml.ftl etc. They are being shown.

-- 
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 seam-issues mailing list