1. 程式人生 > >個人SSM框架使用經歷及總結

個人SSM框架使用經歷及總結

一、報錯及原因

1.spring

2.spring MVC

3.mybatis

3.1   Cause: org.apache.ibatis.type.TypeException: Error setting null for parameter #7 with JdbcType OTHER

       with JdbcType OTHER的意思即使用了其他jdbc型別,在mybatis中,插入空值時需要自行指定jdbcType,否則會報上述的錯誤,個人理解是null在mybatis中有預設的jdbcType值,如果不指定的話,mybatis會根據傳入值的型別進行指定。而在pl/sql或命令列中直接使用null插入是沒有問題的。指定方式如下所示的最後兩個:

<insert id="addUser" parameterType="com.pcw.bean.User">
        <selectKey keyColumn="userid" keyProperty="userid" resultType="long" order="BEFORE">
            select ques_seq.nextval from dual
        </selectKey>
        insert into ques_user(userid,gender,username,password,birth,phonenum,email) values(#{userid},#{gender},#{username},#{password},#{birth},#{phonenum,jdbcType=CHAR},#{email,jdbcType=VARCHAR})
    </insert>

二、總結