解決:Field xxMapper in xx.service.impl.xxServiceImpl required a bean of type 'xx.mapper.xxMapper'...

報錯原因,是因爲項目未掃描到 mapper 包。 解決方法: 在項目啓動類上加註解 @MapperScan(「Mapper文件所在的包」),@MapperScan 是掃描mapper類的註解,就不用在每個mapper類上加@MapperScan了。 重啓工程成功運行。
相關文章
相關標籤/搜索