异常:
org.apache.ibatis.binding.BindingException: Parameter 'Id' not found. Available parameters are [arg1, Id, param1, param2]
解决:
在XXXmapper.java 的方法参数中,添加注解@Param(),以让ibatis识别
int select(@Param("Id") Long Id);
在XXXmapper.java 的方法参数中,添加注解@Param(),以让ibatis识别
int select(@Param("Id") Long Id);