mybatis使用注解的方式实现sql语句时,遇到如下问题
Type 异常报告
消息 Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'userId' not found. Available parameters are [roleId, arg0, param1, param2]
描述 服务器遇到一个意外的情况,阻止它完成请求。
Exception
反复调试,最终发现问题可能出现在dao层上,
我是这样写的
@Insert("insert into users_role(userId,roleId) values(#{userId},#{roleId})")
void addRoleToUser(String userId, String roleId);
查询资料发现需要将代码改成如下样子
@Insert("insert into users_role(userId,roleId) values(#{userId},#{roleId})")
void addRoleToUser(@Param("userId") String userId, @Param("roleId") String roleId);
然后就可以执行通过了.
@Param格式是 字段名+属性名,例如@param( " id ")是数据库中的字段名,id是类中的属性名,我这里只是命名重复了,
这段代码的作用就是实现数据库字段名和实体类属性的一一映射,不然数据库不知道如何匹配id.