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="com\mybatis\mapper\UserMapper.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="com\mybatis\mapper\UserMapper.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>
内置别名
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341