mybatis No enum const class org.apache.ibatis.type.JdbcType.Integer

mybais在使用的时候报错,写法是


 <if test="direct != null and direct != ''" >
        #{direct,jdbcType=Integer,
      </if>


最后修正为



 <if test="direct != null and direct != ''" >
        #{direct,jdbcType=INTEGER,
      </if>


所以 mybatis配置重的jdbaType类型要是大写的,否则就会出现此种异常



你可能感兴趣的:(mybatis No enum const class org.apache.ibatis.type.JdbcType.Integer)