Hibernate - AnnotationConfiguration 已弃用
我在 3.6.0 版本中使用 Hibernate,AnnotationConfiguration 被标记为已弃用。
这是我的 HibernateUtil.java 类中的行:
sessionFactory = new AnnotationConfiguration().configure("/hib.cfg.xml").buildSessionFactory();
AnnotationConfiguration 的替代品是什么?
I am using Hibernate in version 3.6.0 and the AnnotationConfiguration is marked as deprecated.
Here is the the line in my HibernateUtil.java class:
sessionFactory = new AnnotationConfiguration().configure("/hib.cfg.xml").buildSessionFactory();
What's the replacement for AnnotationConfiguration?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
“所有功能已移至配置”:
http://docs.jboss.org/hibernate /core/3.6/javadocs/org/hibernate/cfg/AnnotationConfiguration.html
这是配置:
http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/cfg/Configuration.html
"All functionality has been moved to Configuration":
http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/cfg/AnnotationConfiguration.html
And here is Configuration:
http://docs.jboss.org/hibernate/core/3.6/javadocs/org/hibernate/cfg/Configuration.html
只需执行此操作
,然后为此更改您的代码
Just do this
and then change your code for this
我使用这段代码:
I use this code:
是的,它对我有用-
yes it is working for me-