这个声明bean的name找不到。 是因为下面这个配置出现了问题
mybatis:
type-aliases-package: com.lsc.spring03mybatis.pojo
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