Mybatis使用问题:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'title' not found. Available parameters are [Book, param1]

问题:

在映射文件中使用parameterMap元素时出现以下异常:

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'title' not found. Available parameters are [Book, param1]

at books.com.BooksApplicationTests.InsertBookTest(BooksApplicationTests.java:89)

Caused by: org.apache.ibatis.binding.BindingException: Parameter 'title' not found. Available parameters are [Book, param1]

at books.com.BooksApplicationTests.InsertBookTest(BooksApplicationTests.java:89)

解决方法:

查看映射接口中方法的参数是否有@Param注解,当参数是一个实体时不需要用@Param 注解,当方法中有多个参数时需要使用@Param注解。

猜你喜欢

转载自www.cnblogs.com/ysp99/p/9291434.html
今日推荐