Joined: Fri Jan 09, 2015 9:51 am Posts: 2
|
Hi guys, Sorry I'm quite new in hibernate. I use eclipse hibernate plug-in to generate java classes from DB and I faced an issue that the one-to-many column giving Set DataType but without class name mean that private Set students= new HashSet(0); <-- the code that I get instead of private Set<Student> students= new HashSet(0); <--- The code that I want
If there any config can configure Set with class name while using eclipse to do auto generate the Set type with class name of java classes??
Please help... Thank you.
|
|