[jbosstools-issues] [JBoss JIRA] (JBIDE-18565) Default generated entity is invalid

Arun Gupta (JIRA) issues at jboss.org
Thu Oct 9 20:09:10 EDT 2014


Arun Gupta created JBIDE-18565:
----------------------------------

             Summary: Default generated entity is invalid
                 Key: JBIDE-18565
                 URL: https://issues.jboss.org/browse/JBIDE-18565
             Project: Tools (JBoss Tools)
          Issue Type: Feature Request
            Reporter: Arun Gupta


Code for a default generated JPA entity looks like:

package org.svcc;

import java.io.Serializable;
import javax.persistence.*;

/**
 * Entity implementation class for Entity: Student
 *
 */
@Entity

public class Student implements Serializable {

	
	private static final long serialVersionUID = 1L;

	public Student() {
		super();
	}
   
}

This is an invalid entity because each JPA entity must have a primary key. 

For a simpler OOTB experience, generate a default primary key.



--
This message was sent by Atlassian JIRA
(v6.3.1#6329)


More information about the jbosstools-issues mailing list