显示mapper找不到:Field xxxMapper in xxx required a bean of type ‘xxxMapper‘ that could not be found

发布于:2023-01-12 ⋅ 阅读:(574) ⋅ 点赞:(0)

Field flowerMapper in cn.clearnight.flower.service.impl.FlowerServiceImpl required a bean of type 'cn.clearnight.flower.mapper.FlowerMapper' that could not be found.

 这个问题可能是由于导包出现问题,如 2.7.1 出现问题,换成 2.7.2 或者其它版本可以解决问题

 

 

改完后,运行成功!!

 

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <packaging>war</packaging>

  <parent>
    <artifactId>spring-boot-starter-parent</artifactId>
    <groupId>org.springframework.boot</groupId>
    <version>2.7.2</version>
  </parent>

  <name>springboot-ch03</name>
  <groupId>cn.clearnight</groupId>
  <artifactId>springboot-ch03</artifactId>
  <version>v1.0.0.20220818</version>


  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
    </dependency>
    <dependency>
      <groupId>org.mybatis.spring.boot</groupId>
      <artifactId>mybatis-spring-boot-starter</artifactId>
      <version>2.1.3</version>
    </dependency>
    <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
  </build>


</project>