如何访问 hibernate spring 中的特定模式?

发布于 2024-12-09 13:32:29 字数 121 浏览 0 评论 0原文

我使用 Hibernate-Spring,我试图访问数据库中的特定模式,但不知道如何访问。表的名称并不能解决问题。我希望注释能有所帮助,但到目前为止还没有。注意:我并不是要创建模式,我只是想访问它。我用的是Spring 2.5。

I use Hibernate-Spring and I am trying to access a specific schema in a db but don't know how. The name of the table is not doing the trick. I was hoping that annotation would help be but it hasn't so far. Note: I am not trying to create a schema, I just want to access it. I use Spring 2.5.

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

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

发布评论

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

评论(1

毁梦 2024-12-16 13:32:29

在映射中设置架构:

@Table(name="myentity", schema="some")

<class name="MyEntity" table="myentity" schema="some">

或使用默认值:

hibernate.default_schema="some"

Set schema in your mappings:

@Table(name="myentity", schema="some")

<class name="MyEntity" table="myentity" schema="some">

or use default:

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