我是靠谱客的博主 落后保温杯,最近开发中收集的这篇文章主要介绍mybatis 在typeAliases别名时报错的解决,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

mybatis 在typeAliases别名时报错

Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException:
### Error building SqlSession.
### Cause: org.apache.ibatis.builder.BuilderException: Error creating document instance. Cause: org.xml.sax.SAXParseException; lineNumber: 36; columnNumber: 18; 元素类型为 "configuration" 的内容必须匹配 "(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProvider?,mappers?)"。
at org.apache.ibatis.exceptions.ExceptionFactory.wrapException(ExceptionFactory.java:30)
at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:80)
at org.apache.ibatis.session.SqlSessionFactoryBuilder.build(SqlSessionFactoryBuilder.java:64)
at me.gacl.test.Test1.main(Test1.java:20)

原因

元素顺序错误,元素类型为 "configuration" 的内容必须匹配

"(properties?,settings?,typeAliases?,typeHandlers?,objectFactory?,objectWrapperFactory?,reflectorFactory?,plugins?,environments?,databaseIdProvider?,mappers?)"

修改如下图后,正常。

mybatis typeAliases别名标签

在xxxxMapper.xml文件中User无论是作为参数还是作为查询返回数据类型,都需要写上全限定名,实际可以写上简单类名即可,但是需要配置别名

MyBatis框架提供了两种别名机制,一种是自定义别名,一种是内置别名

自定义别名

单个的取别名

第一步:修改mybatis-config.xml配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!-- dtd约束 -->
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
  <settings>
  	<!-- 使用驼峰命名法 -->
  	<setting name="mapUnderscoreToCamelCase" value="true"/>
  </settings>
  <!-- ####################################################  -->
   <typeAliases>
   		<!--typeAlias子标签:设置单个类型的别名
   			type:pojo或vo的数据类型,值为全限定名
   			alias:别名,一般都使用类的简单名称
   		  -->	
   		<typeAlias type="com.mybatis.pojo.User" alias="user"/>
   		<!-- <typeAlias type="com.mybatis.pojo.XXX" alias="xxx"/> -->
   </typeAliases>
   <!-- ####################################################  -->
  <environments default="dev_mysql">
    <environment id="dev_mysql">
      <transactionManager type="JDBC"/>
      <dataSource type="POOLED">
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/gj1?characterEncoding=utf8"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
      </dataSource>
    </environment>
  </environments>
  <mappers>
  	<mapper resource="commybatismapperUserMapper.xml"/>
  </mappers>
</configuration>

第二步:修改UserMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.mybatis.mapper.UserMapper">
    <!-- 单行查询功能
      resultType : 返回类型,必须和对应映射接口方法的返回类型一致,值必须为全限定名
      此时的resultType必须跟mybatis-config.xml中alias属性值一致
     -->
     <select id="selectByPrimaryKey" parameterType="int" resultType="user">
      select id u_c_a_id,username u_c_a_name,password u_c_a_pwd,age from user where id=#{id}
     </select>
     
</mapper>

一次性给所有pojo取别名

第一步:修改mybatis-config.xml配置文件

<?xml version="1.0" encoding="UTF-8" ?>
<!-- dtd约束 -->
<!DOCTYPE configuration
  PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
  <settings>
  	<!-- 使用驼峰命名法 -->
  	<setting name="mapUnderscoreToCamelCase" value="true"/>
  </settings>
<!--    <typeAliases>
   		typeAlias子标签:设置单个类型的别名
   			type:pojo或vo的数据类型,值为全限定名
   			alias:别名,一般都使用类的简单名称
   		 	
   		<typeAlias type="com.mybatis.pojo.User" alias="user"/>
   		<typeAlias type="com.mybatis.pojo.XXX" alias="xxx"/>
   </typeAliases> -->
    <!-- ####################################################  -->
   <typeAliases>
   		<!--
   			package标签:使用包扫描配置别名
   			为对应包下面的所有类都取了别名
   			默认使用简单的名称作为别名
   		  -->	
   		<package name="com.mybatis.pojo"/>
   </typeAliases>
   <!-- ####################################################  -->
  <environments default="dev_mysql">
    <environment id="dev_mysql">
      <transactionManager type="JDBC"/>
      <dataSource type="POOLED">
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/gj1?characterEncoding=utf8"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
      </dataSource>
    </environment>
  </environments>
  <mappers>
  	<mapper resource="commybatismapperUserMapper.xml"/>
  </mappers>
</configuration>

第二步:修改UserMapper.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
  PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.mybatis.mapper.UserMapper">
    <!-- 单行查询功能
      resultType : 返回类型,必须和对应映射接口方法的返回类型一致,值必须为全限定名
      此时的resultType为pojo的简单名,可以为user,也可以为User
     -->
     <select id="selectByPrimaryKey" parameterType="int" resultType="user">
      select id u_c_a_id,username u_c_a_name,password u_c_a_pwd,age from user where id=#{id}
     </select>     
</mapper>

内置别名

以上为个人经验,希望能给大家一个参考,也希望大家多多支持靠谱客。

最后

以上就是落后保温杯为你收集整理的mybatis 在typeAliases别名时报错的解决的全部内容,希望文章能够帮你解决mybatis 在typeAliases别名时报错的解决所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(123)

评论列表共有 0 条评论

立即
投稿
返回
顶部