我是靠谱客的博主 听话草莓,最近开发中收集的这篇文章主要介绍mybatis的XML配置文件中,typeHandler、jdbcType、javaType的使用1.前言2.在xml的不同位置的使用方式3.总结,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
1.前言
typeHandler、jdbcType、javaType都是用来处理java数据类型和jdbc数据库数据类型的转换问题,但在xml的不同位置使用需要注意引号使用问题。
2.在xml的不同位置的使用方式
1)在xml的尖括号标签内做属性
必须给属性值加引号
<typeHandlers>
<typeHandler handler="org.apache.ibatis.type.EnumTypeHandler"
javaType="Sex" />
</typeHandlers>
如果没有引号则要报错
2) 在xml的sql语句占位'#{ }'内
不能使用引号
后台java测试方法
private SqlSession sqlSession = null;
@Before
public void openSession()
{
sqlSession = MyBatisUtil.createSqlSession();
}
@Test
public void addStudent()
{
int addRows = sqlSession.insert("com.kgc.dao.StudentMapper.addStudent",
new Student(Short.valueOf("23"), Sex.FEMALE, "张大明"));
sqlSession.commit();
System.out.println("新增的行数" + addRows);
}
示例1:给typeHandler、jdbcType、javaType加上引号
<insert id="addStudent" parameterType="Student"
useGeneratedKeys="true" keyProperty="id">
<selectKey keyProperty="id" resultType="string" order="BEFORE">
select uuid()
</selectKey>
insert into test_student (id,age, sex, name)
values (#{id},
#{age ,jdbcType="TINYINT" ,javaType="short"},
#{sex, typeHandler="org.apache.ibatis.type.EnumTypeHandler"},
#{name} )
</insert>
JUinit提示不知道"TINYINT"的枚举类型
示例2:取消typeHandler、jdbcType、javaType属性值的引号
<insert id="addStudent" parameterType="Student"
useGeneratedKeys="true" keyProperty="id">
<selectKey keyProperty="id" resultType="string" order="BEFORE">
select uuid()
</selectKey>
insert into test_student (id,age, sex, name)
values (#{id},
#{age ,jdbcType=TINYINT ,javaType=short},
#{sex, typeHandler=org.apache.ibatis.type.EnumTypeHandler},
#{name} )
</insert>
控制台打印,增加数据成功。
3.总结
在xml的尖括号标签内做属性,需要给typeHandler、jdbcType、javaType的属性值加引号;
在xml的sql语句占位'#{ }'内 ,不能给typeHandler、jdbcType、javaType的属性值加引号。
最后
以上就是听话草莓为你收集整理的mybatis的XML配置文件中,typeHandler、jdbcType、javaType的使用1.前言2.在xml的不同位置的使用方式3.总结的全部内容,希望文章能够帮你解决mybatis的XML配置文件中,typeHandler、jdbcType、javaType的使用1.前言2.在xml的不同位置的使用方式3.总结所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复