我应该使用哪个版本的 Hibernate 工具文件来生成 java 5 的 hibernate POJO
这可能是一个愚蠢的问题,我对此感到抱歉。
我正在使用 ant 任务通过使用 hybernate 反向工程从数据库生成 POJO 和 hbm 文件。
但这是根据 java 4 标准生成的,例如。
private Set volunteerPhysicalInfos = new HashSet(0);
private Set volunteerReferences = new HashSet(0);
我正在使用 JBoss Tools 3.1 :: Eclipse 3.5.2 http://www.jboss.org/tools/download
我想生成 POJO 文件java 5 标准,例如。
HashSet <String>collection = new HashSet <String>();
为此,我应该使用哪个版本的休眠工具?
It could be a silly question and i am sorry for that.
I am using ant task for generating POJO and hbm file from databse by using hybernate reverse engg.
But that is generated as per java 4 standard for eg.
private Set volunteerPhysicalInfos = new HashSet(0);
private Set volunteerReferences = new HashSet(0);
i am using JBoss Tools 3.1 :: Eclipse 3.5.2 from
http://www.jboss.org/tools/download
i want to generate the POJO files in java 5 standards for eg.
HashSet <String>collection = new HashSet <String>();
For this which version of hibernate tool i should use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
得到了答案
需要设置jdk5=“true”
got the answer
need to set jdk5="true"