Hibernate 中注释配置有何用处?

发布于 2024-12-10 08:31:11 字数 352 浏览 3 评论 0原文

我之前使用过 AnnotationConfiguration 但现在已弃用

AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass(Product.class);
factory = cfg.buildSessionFactory();

所以现在建议使用 Configuration 安装,但仍然会出现一些错误: 配置

现在如何构建会话工厂?

I used AnnotationConfiguration before but now is deprecated

AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass(Product.class);
factory = cfg.buildSessionFactory();

So now it's recommended to use Configuration insted, but still get some error:
configuration.

How build a session factory now ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南…巷孤猫 2024-12-17 08:31:12

那么您正在使用一些相当新的版本,也许是 4.0.0.CR4?如果是这样,请检查 buildSessionFactory 的 Javadoc,它会告诉您以下信息:

 @deprecated Use {@link #buildSessionFactory(ServiceRegistry)} instead

尽管不知道建议替换是否有效,但从未使用过它。

So you are using some pretty new version, 4.0.0.CR4 perhaps? If so, then check the Javadoc of buildSessionFactory and it will tell you following:

 @deprecated Use {@link #buildSessionFactory(ServiceRegistry)} instead

No idea though is suggested replacement working, never used it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文