本文主要是介绍用mapper接口发送SQL: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
若想使用mapper接口来执行sql语句,需要将mapper.xml中的<mapper namespace="?">和mapper接口的包名+interface名一致。例子如下
在PersonMapper.xml中的namespace值为对应接口PersonMapper的包名+类名。且在mybatis-config.xml中的<mappers>标签中,只需要添加xml文件,不需要添加对应的mapper文件。
这篇关于用mapper接口发送SQL: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!