-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 
Author Message
 Post subject: Hibernate/JPA Tool
PostPosted: Wed May 07, 2008 8:07 am 
Regular
Regular

Joined: Wed Apr 09, 2008 10:28 am
Posts: 52
Hello,

i just wonder if there is a tool out there which can convert a SQL-Create Statement into an Java Class with Hibernate Annotation / JPA.
For example like this:
My Statement:
Code:
CREATE TABLE Person(
ID LONG NOT NULL,
NAME VARCHAR(45) NOT NULL,
PRIMARY KEY (ID)
);

And the Outcome would be somethign like this:
Code:
..
@Entity
public class Person implements Serializable{
  @Id
  private long id;
  @Basic
  private String name;
  ...
}



I looked at some tools but didnt quite find something which could do this. Maybe there isnt even one. Would be glad if someone could clearify this. Maybe there is a tool which can do similar things.


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 07, 2008 9:55 am 
Beginner
Beginner

Joined: Fri May 18, 2007 10:28 am
Posts: 48
Location: Madison, WI
What is the IDE that u use. MyEclipse is our primary IDE, does a fairly decent job.

_________________
Please rate if it helped


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 07, 2008 10:34 am 
Regular
Regular

Joined: Wed Apr 09, 2008 10:28 am
Posts: 52
Im using Eclipse, is there such a plugin ?


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 07, 2008 11:16 am 
Beginner
Beginner

Joined: Fri May 18, 2007 10:28 am
Posts: 48
Location: Madison, WI
www.myeclipseide.com, I think it has a 30 day trial.

_________________
Please rate if it helped


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 4 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.