1. 程式人生 > >通用Mapper環境下,mapper接口無法註入問題

通用Mapper環境下,mapper接口無法註入問題

def one res expr ESS 環境 public end nsa

寫了一個mapper接口

package com.nyist.mapper;

import com.nyist.entity.User;
import tk.mybatis.mapper.common.Mapper;

public interface UserMapper extends Mapper<User> {

}

在Service中註入該接口--啟動項目,報錯一氣呵成??

Unsatisfied dependency expressed through field ‘userMapper‘; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type ‘com.nyist.mapper.UserMapper‘ available:Unsatisfied dependency expressed through field ‘userMapper‘; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No qualifying bean of type ‘com.nyist.mapper.UserMapper‘ available:

查看springboot啟動類,

import tk.mybatis.spring.annotation.MapperScan;
@MapperScan("com.nyist.mapper")
.............

ok

通用Mapper環境下,mapper接口無法註入問題