错误:

    No qualifying bean of type 'xxx.xxx.xxx' available: expected at least 1
bean which qualifies as autowire candidate. Dependency annotations:
{@org.springframework.beans.factory.annotation.Autowired(required=true)}

    或:

    Not a managed type: class xxx.xxx.xxx

解决方案:

方案一、把 @SpringBootApplication 注解的 SpringBoot 入口类移到上层 root 包中,使 JpaRepository
子接口位于 root包及其子包中。

方案二、在 SpringBoot 入口类上添加
    (1) @ComponentScan(basePackages = "xxx.xxx.xxx"):扫描 @Controller、@Service
注解;
    (2) @EnableJpaRepositories(basePackages = "xxx.xxx.xxx"):扫描 @Repository 注解;
    (3) @EntityScan(basePackages = "xxx.xxx.xxx"):扫描 @Entity 注解;

友情链接
KaDraw流程图
API参考文档
OK工具箱
云服务器优惠
阿里云优惠券
腾讯云优惠券
华为云优惠券
站点信息
问题反馈
邮箱:ixiaoyang8@qq.com
QQ群:637538335
关注微信