小编典典

如何在EJB3(JPA)和Hibernate中使用@Id注释字段?

hibernate

标题不言自明。

我很高兴听到解决方案,谢谢。


阅读 323

收藏
2020-06-20

共1个答案

小编典典

到目前为止,有一种比列出的方法更短的方法:

Reflections r = new Reflections(this.getClass().getPackage().getName());
Set<Field> fields = r.getFieldsAnnotatedWith(Id.class);
2020-06-20