1. 程式人生 > >SpringBoot之專案啟動提示掃描不到Mapper檔案

SpringBoot之專案啟動提示掃描不到Mapper檔案

一、報錯提示

1.No MyBatis mapper was found in '[com.iyungu.phantaci]' package. Please check your configuration.

2.

二、解決方式

在springboot的啟動類里加註解:@MapperScan("com.iyungu.phantaci.dao"),括號裡的是Mapper介面所在路徑。加上註解後,重啟專案,正常。

附上demo專案的目錄截圖: