我正在寻找一种方法来获取项目包之一中的实体的列表(只是字符串值)。并非全部,只是指定的软件包。

有什么办法吗?它们也位于mysql数据库中,但未在其中排序。

最佳答案

您可以为此使用反射:

Reflections ref = new Reflections("com.your.package");
Set<String> entities =
ref.getTypesAnnotatedWith(javax.persistence.Entity.class).stream().map(Class::getName).collect(Collectors.toSet());

09-10 09:32