Spring get all @Entity classes
Is there a way to get all @Entity classes in Spring? I can't seem to find any solution. Thanks.
answer:
<dependency>
<groupId&开发者_开发技巧gt;org.reflections</groupId>
<artifactId>reflections</artifactId>
<version>0.9.5</version>
</dependency>
will do this easily ;)
Why do you need this? I suppose you are in a JPA context, then you can do it like this:
entityManager.getMetamodel().getEntities();
精彩评论