1. 程式人生 > >Springboot專案報mybatis的錯誤,org.apache.ibatis.binding.BindingException:Parameter 'uid' not found.

Springboot專案報mybatis的錯誤,org.apache.ibatis.binding.BindingException:Parameter 'uid' not found.

在Springboot專案中使用了mybatis作為orm模型,專案中報錯如下:

後經檢查是由於在mybatis生成的Mapper檔案中,使用了spring提供的org.springframework.data.repository.query.Param包,改成org.apache.ibatis.annotations.Param包就可以。究其原因是由於我在mybatis的xml中使用的是mybatis的變數引用,而在Mapper檔案中使用的是spring變數引用,導致出錯。