2019.06.12 Spring Data Jpa dao层注解开发Bean注入失败问题点

1.service层在controller中bean注入失败,要注意俩点
第一点:ServiceImpl类上需加上@Service注解 如图:
类上加上@Service注解
第二点:dao层RepositoryImpl类上加上@Repository注解,在dao层中Repository接口与RepositoryImpl类没有关系,RepositoryImpl类并不实现Repository接口 如图:
dao层的RepostoryImpl类上加上@Repository注解

猜你喜欢

转载自blog.csdn.net/sjn0815/article/details/91516406
今日推荐