情况:
@Autowired
BookService bookService;
报方法异常:org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.shangma.cn.service.BookService.findAll
解决方式:
mapper包扫描的时候,未扫描到具体包下(区别 .mapper)
由原来的:
入代码片
改为
参见博客 https://www.jianshu.com/p/b72a1ffb3672



