springboot中“bean”名字找不到

tech2022-08-25  112

这个声明bean的name找不到。 是因为下面这个配置出现了问题

mybatis: type-aliases-package: com.lsc.spring03mybatis.pojo # mapper-locations: classpath:mybatis/Dao/*.xml config-location: classpath:mybatis/Dao/UserMapper.xml

是因为config-location的问题,只需要把config-location换成Mapper-locations问题就解决了,。

mybatis: type-aliases-package: com.lsc.spring03mybatis.pojo mapper-locations: classpath:mybatis/Dao/*.xml
最新回复(0)