码迷,mamicode.com
首页 > Web开发 > 详细

org.apache.ibatis.type.TypeException: Could not resolve type alias 'BIGINT'

时间:2020-06-07 12:57:25      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:char   exce   mon   div   frame   int   spring   common   lan   

异常

Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias BIGINT.  Cause: java.lang.ClassNotFoundException: Cannot find class: BIGINT
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:120) ~[mybatis-3.4.4.jar:3.4.4]
    at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:149) ~[mybatis-3.4.4.jar:3.4.4]
    at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:116) ~[mybatis-3.4.4.jar:3.4.4]
    ... 81 common frames omitted
Caused by: java.lang.ClassNotFoundException: Cannot find class: BIGINT
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:200) ~[mybatis-3.4.4.jar:3.4.4]
    at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:89) ~[mybatis-3.4.4.jar:3.4.4]
    at org.apache.ibatis.io.Resources.classForName(Resources.java:261) ~[mybatis-3.4.4.jar:3.4.4]
    at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:116) ~[mybatis-3.4.4.jar:3.4.4]
    ... 83 common frames omitted


Process finished with exit code 1

原因:自己的粗心大意,jdbcType被我写成了javaType

<resultMap id="BaseResultMap" type="com.atguigu.springcloud.entities.xxxx">
        <id column="id" property="id" javaType="BIGINT"/>
        <id column="serial" property="serial" jdbcType="VARCHAR"/>
    </resultMap>

 

解决办法:JavaType对应的是类里的数据类型,jdbcType对应数据库里的类型

将javaType 改成jdbcType就可以了

 

org.apache.ibatis.type.TypeException: Could not resolve type alias 'BIGINT'

标签:char   exce   mon   div   frame   int   spring   common   lan   

原文地址:https://www.cnblogs.com/XiDaPuBen/p/13059986.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!