Springboot应用中@EntityScan和@EnableJpaRepositories的用法
文章目录
在Springboot
应用开发中使用JPA
时,通常在主应用程序所在包或者其子包的某个位置定义我们的Entity
和Repository
,这样基于Springboot
的自动配置,无需额外配置,我们定义的Entity
和Repository
即可被发现和使用。但有时候我们需要定义Entity
和Repository
不在应用程序所在包及其子包,那么这时候就需要使用@EntityScan
和@EnableJpaRepositories
了。
上面提到的Entity
和Repository
指的是通过类似下面的方式定义的Entity
和Repository
:
@Entity
@Table(name = "grade")
public class Grade {
// 省略具体内容
}
1234512345
@Repository
public interface GradeRepository extends JpaRepository<Grade, Long>, JpaSpecificationExecutor<Grade> {
// 省略具体内容
}
12341234
@EntityScan
@EntityScan
用来扫描和发现指定包及其子包中的Entity
定义。其用法如下:
@EntityScan(basePackages = {"com.department.entities","come.employee.entities"})
11
如果多处使用@EntityScan
,它们的basePackages
集合能覆盖所有被Repository
使用的Entity
即可,集合有交集也没有关系。但是如果不能覆盖被Repository
使用的Entity
,应用程序启动是会出错,比如:
Not a managed type: com.customer.entities.Customer
@EnableJpaRepositories
@EnableJpaRepositories用来扫描和发现指定包及其子包中的Repository
定义。其用法如下:
@EnableJpaRepositories(basePackages = {"com.department.repositories","come.employee.repositories"})
11
如果多处使用@EnableJpaRepositories
,它们的basePackages
集合不能有交集,并且要能覆盖所有需要的Repository
定义。
如果有交集,相应的Repository
会被尝试反复注册,从而遇到如下错误:
The bean ‘OrderRepository’, defined in xxx, could not be registered. A bean with that name has already been defined in xxx and overriding is disabled.
如果不能覆盖所有需要的Repository
定义,会遇到启动错误:
Parameter 0 of method setCustomerRepository in com.service.CustomerService required a bean of type ‘come.repo.OrderRepository’ that could not be found.
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!