天天看點

Spring Boot 安裝通用mapper: Error creating bean with name *Mapper: Unsatisfied dependency......

Spring Boot 安裝通用mapper時報錯: Error creating bean with name *Mapper: Unsatisfied dependency…

我這邊為了讓mapper類生效, 做了:

1.Application.java中使用@MapperScan(“com.example.mapper"在這裡指定你的mapper包包名”)

2.在mapper接口上加上@Mapper注解,注意不要使用@Component和@Repository注解

3.保證明體類中:類名和表名相對應;實體類字段名要和資料庫中的字段一一對應;無法對應的字段要加上@Transient注解