什么是“目录”?在 Hibernate 带注释的类中使用?
在 Java 类中,我看到了以下内容:
@Table(name="user" , catalog="users"
它的用途是什么?
In a Java class I have seen the following:
@Table(name="user" , catalog="users"
For what purpose it is used?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 维基百科:
另外,如果您的数据库是 MySQL,检查此项。
希望有帮助。
From Wikipedia:
Also, if your DB is MySQL, check this.
Hope that helps.
数据库有不同的方法(或相同方法的名称:)来组织其表。
有些数据库将所有表放在不同的“模式”中,有些数据库将所有表放在不同的“目录”中。您可以在属性中指定这一点。
Databases have different methods (or names for the same methods :) to organize its tables.
Some database place all tables in a different "schema", some in different "catalogs". In the attribute you can specify this.
这是来自 JPA @Table 注释。
That's from the JPA @Table annotation.