Mybatis菜鸟BUG集

Debug1:

### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException; lineNumber: 30; columnNumber: 58; 元素内容必须由格式正确的字符数据或标记组成。

Question1:

select * from demo_user where sex=#{sex} and age<#{age}

Solve1:<![CDATA[  select * from demo_user where sex=#{sex} and age<#{age}]]>

Debug2:

Cause: java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '%精% desc' at line 1

Question2:

<select id="findCover" resultType="com.jt.pojo.DemoUser">
    select * from demo_user where name like "%"#{name}"%" order by ${name} desc
</select>

Solve2:

select * from demo_user where name like "%"#{name}"%" order by #{age} desc

Debug3:

java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'null (

            '大乔'

         ,

            '小乔'

     ...' at line 1

Question3:

<update id="findUpdata" >
update demo_user set age = #{age}, sex = #{sex} where name in #{name} (
    <foreach collection="names" item="name" separator=",">
        #{name}
    </foreach>
    )
</update>

Solve3:

<update id="findUpdata" >
update demo_user set age = #{age}, sex = #{sex} where name in (
    <foreach collection="names" item="name" separator=",">
        #{name}
    </foreach>
    )
</update>

Debug4:

Preparing: select * from demo_user where name like '%'?'%' order by age desc

DEBUG com.jt.mapper.DemoUserMapper.findCover - ==> Parameters: %精%(String)

 DEBUG com.jt.mapper.DemoUserMapper.findCover - <==      Total: 0

[]

Question4:

<select id="findCover" resultType="com.jt.pojo.DemoUser">
    select * from demo_user where name like '%'#{name}'%' order by ${age} desc
</select>

Solve4:

<select id="findCover" resultType="com.jt.pojo.DemoUser">
    select * from demo_user where name like "%"#{name}"%" order by ${age} desc
</select>

Debug5:

Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'mybatis/mappers/demoUserMapper.xml'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'com.pojo.DemoUser'.  Cause: java.lang.ClassNotFoundException: Cannot find class: com.pojo.DemoUser

Question5:

<select id="selectUser" resultType="com.pojo.DemoUser">
    <![CDATA[  select * from demo_user where sex=#{sex} and age<#{age}]]>
</select>

Solve5:

<select id="selectUser" resultType="com.jt.pojo.DemoUser">
    <![CDATA[  select * from demo_user where sex=#{sex} and age<#{age}]]>
</select>

Debug6:

Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance.  Cause: org.xml.sax.SAXParseException; lineNumber: 12; columnNumber: 50; 元素内容必须由格式正确的字符数据或标记组成。

Question6:

select * from demo_user where sex=#{sex} and age<#{age}

Solve6:

<![CDATA[  select * from demo_user where sex=#{sex} and age<#{age}]]>

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值