找不到映射文件mapper.xml解决方法
2021-07-20 本文已影响0人
情安
报错:
是因为mapper.xml文件找不到导致dao包的映射接口中的get方法调用不到mapper.xml中的id属性。
解决方法:
在resources下创建一个mapper包把mapper.xml文件放到包里。
在修改application.yml中的mapper-locations: classpath:/mapper/*.xml 文件位置就好啦。
是因为mapper.xml文件找不到导致dao包的映射接口中的get方法调用不到mapper.xml中的id属性。
在resources下创建一个mapper包把mapper.xml文件放到包里。
在修改application.yml中的mapper-locations: classpath:/mapper/*.xml 文件位置就好啦。