org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'username'
not found. Available parameters are [1, 0, param1, param2]
原因: 忘了使用@Param。当只有一个参数时,Mapper中可以不使用
public void insert(String username);
但是有多个参数时必须用:
public void insert(@Param("username")String username,@Param("password")String password);