之前發(fā)現(xiàn)啟動(dòng)的時(shí)候 log總是會(huì)報(bào)錯(cuò)雖然不影響使用但是看著很煩,越看越煩掉盅,于是花了點(diǎn)時(shí)間跟了下源碼 發(fā)現(xiàn) 是spring 加載 MapperAutoConfiguration的時(shí)候出現(xiàn)的朝扼,查了下MapperAutoConfiguration大概是功能是自動(dòng)配置mapper 赃阀,但是我這邊沒使用于是將這個(gè)類繼承初始化了一下就好了
@Configuration
class MapperNoWarnextends MapperAutoConfiguration {
public MapperNoWarn(MybatisProperties properties, ObjectProvider interceptorsProvider, ResourceLoader resourceLoader, ObjectProvider databaseIdProvider, ObjectProvider> configurationCustomizersProvider) {
super(properties, interceptorsProvider, resourceLoader, databaseIdProvider, configurationCustomizersProvider);
? ? }
}
在mapper包里加上上面的就好了