1、spring boot 默认的自动扫描的包是主程序所在的包以及子包中的带有@Controller,@Service,@Respository,@Component的类。如果自己写的类不在主程序所在的包下面,此时就要重写默认的自动扫描包@SpringBootApplication(scanBasePackages={"xxx.xxx"})。
2、如果使用过程中一直出现mapper接口不能注入的问题,在主程序使用@MapperScan(basePackages="xxx.xxx")指定mapper所在的包