Spring Boot外部Hibernate JPA实体

时间:2017-10-08 12:39:38

标签: spring hibernate jpa spring-boot spring-data-jpa

我有一个带有许多单独模块的maven项目。我想在@javax.persistence.Entity模块中移动我的Spring Boot JPA实体(用common注释),并将该模块用作Spring Boot中的依赖项。

问题在于,当我这样做时,Spring Boot无法再找到这些实体的数据。它返回空列表。我目前的解决方法是在@MappedSuperclass中使用common注释模型,并在Spring Boot中使用具有@Entity注释的虚拟类,并在common中扩展类。这是非常愚蠢的,必须有更好的方法来做到这一点。

感谢。

0 个答案:

没有答案