springboot调用service层方法报错Invalid bound statement (not found) 20
我在spring-boot里面添加接口service,并且添加实现类,serviceImpl,加上注解@Service,然后在Controller调用service中的方...
我在spring-boot里面添加接口service,并且添加实现类,serviceImpl,加上注解@Service,
然后在Controller调用service中的方法 就一直报错Invalid bound statement (not found): com.b2b.ws.service.TmsUserInfoService.findUserById 展开
然后在Controller调用service中的方法 就一直报错Invalid bound statement (not found): com.b2b.ws.service.TmsUserInfoService.findUserById 展开
2个回答
展开全部
好像base-package或@mapperscan扫描包路径范围太大了,你直接把扫描包路径定位到mapper接口文件夹即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接写实现类, 无需接口.如需用接口,可以在注入Service时用Qualifier直接写实现类的名字,例如
@Autowired
@Qualifier("userServiceImpl")
private UserService userService;
@Autowired
@Qualifier("userServiceImpl")
private UserService userService;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询