错误是这样说的:
原因:org.apache.ibatis.type。TypeException:无法设置映射参数:ParameterMapping{property=‘username’, mode=IN, javaType=class java.lang。
错点::ParameterMapping
就是下面代码里的parameterType这个参数写错了
注意注意
parameterType在查询全部方法不需要这个参数,也就是没有
parameterType添加返回的返回的是****实体类的全类名
parameterType在更新方法里,这个参数返回的也是实体类的全类名
parameterType在删除方法里,这个参数返回的也是实体类的Integer,就是成功影响一条数据的记录表示成功
<mapper namespace="com.shiyaxin.dao.IUserDao">
<!-- 查询所有信息-->
<select id="findAll" resultType="com.shiyaxin.Bean.User">
select * from user;
</select>
<!--保存用户-->
<insert id="saveUser" parameterType="com.shiyaxin.Bean.User">
<!-- 打死语句里不能加引号-->
insert into user(username,birthday,sex,address) VALUES (#{username},#{birthday},#{sex},#{address});
</insert>
<!-- 修改用户-->
<update id="updateUser" parameterType="com.shiyaxin.Bean.User">
UPDATE `user` set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} WHERE id=#{id}
</update>
<!-- 删除方法-->
<delete id="deleteUser" parameterType="Integer"> <!--parameterType="com.shiyaxin.Bean.User",也可以是实体类 -->
DELETE FROM `user` WHERE id=#{uid}<!-- 删除只要一个字段,所以任意占位符-->
</delete>
<!-- 查询一个用户-->
<select id="findOne" parameterType="INTEGER" resultType="com.shiyaxin.Bean.User">
SELECT * FROM `user` where id=#{id}
</select>
<!-- 模糊查询一个用户-->
<select id="findBlur" resultType="com.shiyaxin.Bean.User" parameterType="String">
SELECT * FROM `user` WHERE username LIKE #{usenname};
</select>
</mapper>
org.apache.ibatis.binding.BindingException: Parameter ‘startTime‘ not found. Available parameters
用mybatis写注解SQL的执行报错,这个报错有很多原因就不说了,说一下我的问题
同一个mapper中方法有重名的,虽然编译没报错,相当于重载了,但是执行的时候就报错了
方法写的太多了都没注意
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found)
org.apache.ibatis.builder.IncompleteElementException: Could not find result map com.dao.IndexDao.Use
org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration
org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.sd.sbmb.dao.Use
nested exception is org.apache.ibatis.executor.ExecutorException: A query was run and no Result Maps
org.apache.ibatis.binding.BindingException: Mapper method 'attempted to return null from a method wi...
org.apache.ibatis.binding.BindingException: Parameter 'XXXX' not found.的问题解决办法
这是在提交yarn时报的错误,原因其实就是少了一些包,提交的集群后一些依赖包使用flink的lib目录下的,所以我需要将一些依赖包放到lib目录下。
org.apache.ibatis.binding.BindingException: Invalidbound statement (not found)的解决方案和造成原因分析(超详细)
nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘ids‘ not found.
Cause: the class org.apache.tools.ant.taskdefs.optional.ANTLR was not found.