[jboss-user] [EJB 3.0] - Re: Problem using SequenceGenerator

fmatar do-not-reply at jboss.com
Wed Aug 2 05:12:31 EDT 2006


I'm using a similar approach:

  | @Id
  |     @GeneratedValue(generator="system-uuid")
  |     @GenericGenerator(name="system-uuid", strategy = "uuid")
  |     @Column(name = "id", unique = true, nullable = false, insertable = true, updatable = true, length = 32)
  |     public String getId() {
  |         return this.id;
  |     }
  | 

and it ain't working either. Any clue?

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3962392#3962392

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3962392



More information about the jboss-user mailing list