[forge-issues] [JBoss JIRA] (FORGE-1886) Scaffolding generates java.lang.Long for Ids

Antonio Goncalves (JIRA) issues at jboss.org
Tue Jun 17 11:14:24 EDT 2014


Antonio Goncalves created FORGE-1886:
----------------------------------------

             Summary: Scaffolding generates java.lang.Long for Ids
                 Key: FORGE-1886
                 URL: https://issues.jboss.org/browse/FORGE-1886
             Project: Forge
          Issue Type: Enhancement
      Security Level: Public (Everyone can see)
          Components: Scaffold
    Affects Versions: 2.6.0.Final
            Reporter: Antonio Goncalves
             Fix For: 2.x Future


When I generate an Entity and then Scaffold the JSF web app, my Backing Beans have the following : 

{code}
private java.lang.Long id;

public java.lang.Long get Id() {
 return this.id;
}
{code}

But in the previous release of Forge it used to be like that : 

{code}
private Long id;

public Long get Id() {
 return this.id;
}
{code}




--
This message was sent by Atlassian JIRA
(v6.2.6#6264)


More information about the forge-issues mailing list