【笔记】遇到很多不相关的注入错误

发现很多不相关的注入错误时,很有可能是xxxMapper.xml文件 的namespace重名,或者id重名。

在shipingservice报错,可能是xml问题。

 在web报错,可能是注入问题。

@RequestMapping("/area/getAreaThreshold")
@ResponseBody
List<CustomerAreaThreshold> getAreaThreshold(@RequestParam("areaId") Integer areaId);


原文地址:https://www.cnblogs.com/CESC4/p/7609469.html