zoukankan      html  css  js  c++  java
  • springboot 工程启动报错之Consider defining a bean of type ‘XXX’ in your configuration.

    springboot 工程启动报错之Consider defining a bean of type ‘XXX’ in your configuration.

    一、前言:

    使用springboot自动注入的方式搭建好了工程,结果启动的时候报错了!!!,错误如下图:

    复制代码
    Description:
    
    Field userEntityMapper in com.xxx.xxx.service.UserService required a bean of type 'com.xxx.xxx.dao.UserEntityMapper' that could not be found.
    
    Action:
    
    Consider defining a bean of type 'com.xxx.xxx.dao.UserEntityMapper' in your configuration.
    复制代码

    二、解决方式:

    1.检查自己写的注解是否错了,并没有。

    2.在网上查找解决方式:如下所示:

    步骤一:

      在springboot的配置文件添加,mybatis的配置如下所示:

    mybatis:
      typeAliasesPackage: com.xxx.xxx.dao.entity
      mapperLocations: classpath:mapper/*.xml

     步骤二:

      ①将接口与对应的实现类放在与application启动类的同一个目录或者他的子目录下,这样注解可以被扫描到,这是最省事的办法。(没测试)
      ②或者在启动类上加上@MapperScan或者@ComponentScan注解,手动指定application类要扫描哪些包下的注解,如下所示: 

    @SpringBootApplication
    @ComponentScan(basePackages = {"com.xxx.xxx.dao"})

      ③或者在接口上添加@Mapper注解。

    @Mapper
    public interface UserMapper {
    }

    ps:之所以没有找到对应的Bean是因为,@SpringBootApplication没有扫描到。

    努力到无能为力,拼搏到感动自己。 欢迎大家在下方多多评论。
  • 相关阅读:
    汽车文化【1196】
    西方经济学
    计算机组成原理【0013】
    C语言程序设计【0039】
    教育学【0405】
    管理学[9080]
    专业英语【0089】
    计算机基础1056
    letcode每日一题-上升下降字符串
    Flowable学习-flowable
  • 原文地址:https://www.cnblogs.com/wasbg/p/11416507.html
Copyright © 2011-2022 走看看