从 POJO 获取带注释的 hibernate 表名

发布于 2024-08-02 21:40:47 字数 199 浏览 4 评论 0原文

我有一个实体,其声明大致如下:

@Entity
@Table(name = "myUserTable")
public class User implements Serializable { ... }

我正在创建一个通用 DAO 类,这样做时我想检索“myUserTable”名称。有什么办法可以达到这个名字吗?

I have an entity which is declared roughly like:

@Entity
@Table(name = "myUserTable")
public class User implements Serializable { ... }

I'm making a generic DAO class, and in doing so I'd like to retrieve the "myUserTable" name. Is there any way I can reach this name?

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

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

发布评论

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

评论(2

亚希 2024-08-09 21:40:47

使用一般反射就足够简单了:

import javax.persistence.Table;

.....

Class<?> c = User.class;
Table table = c.getAnnotation(Table.class);
String tableName = table.name();

Easy enough using general reflection:

import javax.persistence.Table;

.....

Class<?> c = User.class;
Table table = c.getAnnotation(Table.class);
String tableName = table.name();
救赎№ 2024-08-09 21:40:47

类似于 从 Hibernate 中的模型获取表名称

Table table = Entity.class.getAnnotation(Table.class);
String tableName = table.name();

Similar to Get the table name from the model in Hibernate

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