public class Test {
@Autowired
private UserService userService;
?我在controller中注入service时,调用list方法发生如下报错:
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.zhou.app01.sys.oa.service.UserService.getBaseMapper
at org.apache.ibatis.binding.MapperMethod$SqlCommand.<init>(MapperMethod.java:235) ~[mybatis-3.5.6.jar:3.5.6]
at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.<init>(MybatisMapperMethod.java:51) ~[mybatis-plus-core-3.4.2.jar:3.4.2]
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:111) ~[mybatis-plus-core-3.4.2.jar:3.4.2]
at java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1660) ~[?:1.8.0_91]
at com.baomidou.mybatisplus.core.toolkit.CollectionUtils.computeIfAbsent(CollectionUtils.java:117) ~[mybatis-plus-core-3.4.2.jar:3.4.2]
at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) ~[mybatis-plus-core-3.4.2.jar:3.4.2]
说是映射不到,然后我发现了UserService接口创建了2个bean,一个是我们通过@Service注解创建的,因为它的类型是UserServiceImpl,但是还有一个bean类型是mybatis-plus包里面的MapMapperProxy类,但是实现了UserService接口。
????????这导致我们无法去通过接口去准确注入我们需要的类。解决办法:
1.通过@Resource指定bean名称注入
2.通过UserServiceImpl实现类来注入,不通过接口注入
3.(推荐)使@MapperScan注解扫描的路径更精确,不要扫描到service目录,这样mybatis-plus就不会去创建service了
|