当前位置:   article > 正文

mybatis精讲(三)--标签及TypeHandler使用_typehandler=fulllike

typehandler=fulllike

话引

  • 前两张我们分别介绍了Mybatis环境搭建及其组件的生命周期。这些都是我们Mybatis入门必备技能。有了前两篇的铺垫我们今天就来深入下Mybatis, 也为了填下之前埋下的坑。

XML配置标签

概览

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE configuration
  3. PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-config.dtd">
  5. <configuration>
  6. <!--引入外部配置文件-->
  7. <properties resource=""/>
  8. <!--设置-->
  9. <settings/>
  10. <!--定义别名-->
  11. <typeAliases>
  12. <package name=""/>
  13. </typeAliases>
  14. <!--类型处理器-->
  15. <typeHandlers/>
  16. <!--对象工厂-->
  17. <objectFactory/>
  18. <!--插件-->
  19. <plugins/>
  20. <!--定义数据库信息,默认使用development数据库构建环境-->
  21. <environments default="development">
  22. <environment id="development">
  23. <!--jdbc事物管理-->
  24. <transactionManager type="JDBC"/>
  25. <!--配置数据库连接信息-->
  26. <dataSource type="POOLED"/>
  27. </environment>
  28. </environments>
  29. <!--数据库厂商标识-->
  30. <databaseIdProvider/>
  31. <mappers/>
  32. </configuration>
  • 上面模板列出了所有xml可以配置的属性。这里plugins是一个让人哭笑不得的东西。用的好是利器,用的不好就是埋坑。接下来我们来看看各个属性的作用

properties

  • 该标签的作用就是引入变量。和maven的properties一样。在这里定义的变量或者引入的变量,在下面我们是可以童工${}使用的。

子标签property

  1. <properties>
  2. <property name="zxhtom" value="jdbc:mysql://localhost:3306/mybatis"/>
  3. </properties>
  4. <dataSource type="POOLED">
  5. <property name="driver" value="${zxhtom}"/>
  6. <dataSource>
  • 上述的配置就可以直接使用zxhtom这个变量。

resource

  • 除了上述方法我们还可以通过引入其他properties文件,就可以使用文件里的配置变量了。

<properties resource="mybatis.properties"/>

程序注入

  • 最后还有一种我们在构建SqlSessionFactory的时候重新载入我们的Properties对象就可以了。另外三者的优先级是从低到高

settings

  1. configuration.setAutoMappingBehavior(AutoMappingBehavior.valueOf(props.getProperty("autoMappingBehavior", "PARTIAL")));
  2. configuration.setAutoMappingUnknownColumnBehavior(AutoMappingUnknownColumnBehavior.valueOf(props.getProperty("autoMappingUnknownColumnBehavior", "NONE")));
  3. configuration.setCacheEnabled(booleanValueOf(props.getProperty("cacheEnabled"), true));
  4. configuration.setProxyFactory((ProxyFactory) createInstance(props.getProperty("proxyFactory")));
  5. configuration.setLazyLoadingEnabled(booleanValueOf(props.getProperty("lazyLoadingEnabled"), false));
  6. configuration.setAggressiveLazyLoading(booleanValueOf(props.getProperty("aggressiveLazyLoading"), false));
  7. configuration.setMultipleResultSetsEnabled(booleanValueOf(props.getProperty("multipleResultSetsEnabled"), true));
  8. configuration.setUseColumnLabel(booleanValueOf(props.getProperty("useColumnLabel"), true));
  9. configuration.setUseGeneratedKeys(booleanValueOf(props.getProperty("useGeneratedKeys"), false));
  10. configuration.setDefaultExecutorType(ExecutorType.valueOf(props.getProperty("defaultExecutorType", "SIMPLE")));
  11. configuration.setDefaultStatementTimeout(integerValueOf(props.getProperty("defaultStatementTimeout"), null));
  12. configuration.setDefaultFetchSize(integerValueOf(props.getProperty("defaultFetchSize"), null));
  13. configuration.setMapUnderscoreToCamelCase(booleanValueOf(props.getProperty("mapUnderscoreToCamelCase"), false));
  14. configuration.setSafeRowBoundsEnabled(booleanValueOf(props.getProperty("safeRowBoundsEnabled"), false));
  15. configuration.setLocalCacheScope(LocalCacheScope.valueOf(props.getProperty("localCacheScope", "SESSION")));
  16. configuration.setJdbcTypeForNull(JdbcType.valueOf(props.getProperty("jdbcTypeForNull", "OTHER")));
  17. configuration.setLazyLoadTriggerMethods(stringSetValueOf(props.getProperty("lazyLoadTriggerMethods"), "equals,clone,hashCode,toString"));
  18. configuration.setSafeResultHandlerEnabled(booleanValueOf(props.getProperty("safeResultHandlerEnabled"), true));
  19. configuration.setDefaultScriptingLanguage(resolveClass(props.getProperty("defaultScriptingLanguage")));
  20. configuration.setDefaultEnumTypeHandler(resolveClass(props.getProperty("defaultEnumTypeHandler")));
  21. configuration.setCallSettersOnNulls(booleanValueOf(props.getProperty("callSettersOnNulls"), false));
  22. configuration.setUseActualParamName(booleanValueOf(props.getProperty("useActualParamName"), true));
  23. configuration.setReturnInstanceForEmptyRow(booleanValueOf(props.getProperty("returnInstanceForEmptyRow"), false));
  24. configuration.setLogPrefix(props.getProperty("logPrefix"));
  25. configuration.setConfigurationFactory(resolveClass(props.getProperty("configurationFactory")));
  • 上面代码是我们在XMLConfigBuilder解析settings标签的代码。从这段代码中我们了解到settings子标签。
参数功能可选值默认值
autoMappingBehavior指定Mybatis应如何自动映射列到字段上。
NONE : 表示取消自动映射
PARTIAL:只会自动映射没有定义嵌套结果集映射的结果集
FULL : 自动映射任意复杂的结果集
NONE、PARTIAL、FULLPARTIAL
autoMappingUnknownColumnBehavior指定识别到位置列或属性的时间
NONE : 什么都不做
WARNING:日志会报警(前提是日志设置了显示权限)
FAILING : 抛出异常。
NONE, WARNING, FAILINGNONE
cacheEnabled该配置影响的所有映射器中配置的缓存的全局开关true|falsetrue
proxyFactory指定Mybatis创建具有延迟加载能力的对象所用到的代理工具未指定时将自动查找SLF4J | LOG4J | LOG4J2 | JDK_LOGGING | COMMONS_LOGGING | STDOUT_LOGGING | NO_LOGGINGnot set
lazyLoadingEnabled延时加载全局开关
开启时:级联对象会延时加载;级联标签中可以通过fetchType来定制覆盖此选项
true|falsefalse
aggressiveLazyLoading启用时:对任意延迟属性的调用会使带有延迟加载属性的对象分层性质完整加载,反之按需加载true|falsetrue
multipleResultSetsEnabled是否允许单一语句返回多结果集true|falsetrue
useColumnLabel确切的说当映射找不到参数时会使用列标签(数据库列名)代替别名去映射true|falsetrue
useGeneratedKeys允许 JDBC 支持自动生成主键,需要驱动兼容。 如果设置为 true 则这个设置强制使用自动生成主键,尽管一些驱动不能兼容但仍可正常工作(比如 Derby)true|falsefalse
defaultExecutorType配置默认的执行器。SIMPLE 就是普通的执行器;REUSE 执行器会重用预处理语句(prepared statements); BATCH 执行器将重用语句并执行批量更新SIMPLE REUSE BATCHSIMPLE
defaultStatementTimeout设置超时时间,决定驱动等待数据库响应的秒数整数null
defaultFetchSize设置数据库resultSet读取数据方式,默认全部加载进内存,设置该属性可以设置一次性读多少条数据进内存整数null
mapUnderscoreToCamelCase是否开启自动驼峰命名规则(camel case)映射,即从经典数据库列名 A_COLUMN 到经典 Java 属性名 aColumn 的类似映射。true|falsefalse
safeRowBoundsEnabled-允许在嵌套语句中使用分页true|falsefalse
localCacheScope一级缓存。mybatis默认对同一个sqlsession中数据是共享的。一个sqlsession调用两次相同查询实际只会查询一次。就是因为该属性为SESSION , STATEMENT则针对的是每一条sqlSESSION|STATEMENTSESSION
jdbcTypeForNull当没有为参数提供特定的jdbc类型时,为空值则指定JDBC类型。在新增时我们没有设置参数,这个时候就会根据此参数天长。加入设置VARCHAR,那么我们新增的数据没传参数则为空字符NULL|VARCHAR|OTHEROTHER
lazyLoadTriggerMethods指定具体方法延时加载方法equals,clone,hashCode,toString
safeResultHandlerEnabled允许在嵌套语句中使用分页true|falsetrue
defaultScriptingLanguage动态SQL生成的默认语言org.apache.ibatis.scripting.xmltags.XMLDynamicLanguageDriver
defaultEnumTypeHandlermybatis默认的枚举处理类
callSettersOnNulls指定当结果集中值为null的时候是否调用映射对象的setter(put)方法。
useActualParamName允许使用他们的编译后名称来映射,3.4.2后默认true.在xml中#{0}则报错。设置为false,则#{0}代表第一个参数#{n}第n个true|falsetrue
returnInstanceForEmptyRow当返回行的所有列都是空时,MyBatis默认返回 null。 当开启这个设置时,MyBatis会返回一个空实例。 请注意,它也适用于嵌套的结果集 (如集合或关联)。(新增于 3.4.2)true|falsefalse
logPrefix指定 MyBatis 增加到日志名称的前缀。

别名

  • 别名是mybatis为我们项目中类起的一个名字,类名往往会很长所以别名就方便我们平时的开发。Mybatis为我们内置了一些类的别名:byte、short、int、long、float、double、boolean、char等基础类型的别名。还有其的封装类型、String,Object,Map,List等等常用的类。
    org.apache.ibatis.type.TypeAliasRegistry这个类中帮我们内置了别名。可以看下。自定义别名也是通过这个类进行注册的。我们可以通过settings中typeAliases配置的方式结合@Alias。或者扫描包也可以的。

TypeHandler

  • 这个接口就四个方法
  1. public interface TypeHandler<T> {
  2. /**
  3. * 设置参数是用到的方法
  4. */
  5. void setParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType) throws SQLException;
  6. T getResult(ResultSet rs, String columnName) throws SQLException;
  7. T getResult(ResultSet rs, int columnIndex) throws SQLException;
  8. T getResult(CallableStatement cs, int columnIndex) throws SQLException;
  9. }
  • 可以理解成拦截器。它主要拦截的是设置参数和获取结果的两个节点。这个类的作用就是将Java对象和jdbcType进行相互转换的一个功能。同样的在org.apache.ibatis.type.TypeHandlerRegistry这个类中mybatis为我们提供了内置的TypeHandler。基本上是对于基本数据和分装对象的转换。
  • 下面我们随便看一个TypeHandler处理细节
  1. public class BooleanTypeHandler extends BaseTypeHandler<Boolean> {
  2. @Override
  3. public void setNonNullParameter(PreparedStatement ps, int i, Boolean parameter, JdbcType jdbcType)
  4. throws SQLException {
  5. ps.setBoolean(i, parameter);
  6. }
  7. @Override
  8. public Boolean getNullableResult(ResultSet rs, String columnName)
  9. throws SQLException {
  10. boolean result = rs.getBoolean(columnName);
  11. return !result && rs.wasNull() ? null : result;
  12. }
  13. @Override
  14. public Boolean getNullableResult(ResultSet rs, int columnIndex)
  15. throws SQLException {
  16. boolean result = rs.getBoolean(columnIndex);
  17. return !result && rs.wasNull() ? null : result;
  18. }
  19. @Override
  20. public Boolean getNullableResult(CallableStatement cs, int columnIndex)
  21. throws SQLException {
  22. boolean result = cs.getBoolean(columnIndex);
  23. return !result && cs.wasNull() ? null : result;
  24. }
  25. }
  • setParameter是PreparedStatement进行设置成boolean类型。getResult分别通过三种不同方式获取。在这些方法里我们可以根据自己也无需求进行控制。常见的控制是枚举的转换。传递参数过程可能是枚举的name,但是传递到数据库中要枚举的index.这种需求我们就可以在TypeHandler中实现。我们书写的typeHandler之后并不能被识别,还需要我们在resultMap中的result标签中通过typeHandler指定我们的自定义Handler.

自定义TypeHandler

  • 承接上文我们说道枚举的转换。下面我们还是已学生类为例。学生中性别之前是boolean类型。现在我们采用枚举类型。但是数据库中存的还是数据,01.

EnumTypeHandler

  • 在TypeHandlerRegister类中申明了默认的枚举类处理器是private Class<? extends TypeHandler> defaultEnumTypeHandler = EnumTypeHandler.class;
  1. @Override
  2. public E getNullableResult(ResultSet rs, String columnName) throws SQLException {
  3. String s = rs.getString(columnName);
  4. return s == null ? null : Enum.valueOf(type, s);
  5. }
  • 我们通过这个方法可以看出,这个枚举处理器适合已枚举名称存储的方式
    www.wityx.com
    www.wityx.com
    www.wityx.com

EnumOrdinalTypeHandler

  • Enum中还有一个属性oridinal。这个表示枚举中的索引。然后我们通过查看Mybatis提供的处理器发现有个叫EnumOrdinalTypeHandler。我们很容易联想到的就是这个处理器是通过枚举的所以作为数据库内容的。在SexEnum中MALE存储到数据库中则为0.注意这个0不是我们的index.而是MALE的索引。如果将MALE和FEMAEL调换。那么MALE索引则为1.

  • 因为默认的是EnumTypeHandler。所以想用EnumOrdinalTypeHandler的话我们要么在resultMap中sex字段指定该处理器。要不就通过配置文件typeHandlers注册进来。(将处理器与Java类进行绑定。mybatis遇到这个Java对象的时候就知道用什么处理器处理)

  1. <typeHandlers>
  2. <typeHandler handler="org.apache.ibatis.type.EnumOrdinalTypeHandler" javaType="com.github.zxhtom.enums.SexEnum"/>
  3. </typeHandlers>

SexTypeHandler

  • 上面的不管是通过名称存储还是通过索引存储都不太满足我们的需求。我们想通过我们的index存储。那么这时候我们就得自定义处理逻辑了。Mybatis处理器都是继承BaseTypeHandler。因为BaseTypeHandler实现了TypeHandler.所以我们这里也就继承BaseTypeHandler。
  1. public class SexTypeHandler extends BaseTypeHandler<SexEnum> {
  2. @Override
  3. public void setNonNullParameter(PreparedStatement ps, int i, SexEnum parameter, JdbcType jdbcType) throws SQLException {
  4. ps.setInt(i,parameter.getIndex());
  5. }
  6. @Override
  7. public SexEnum getNullableResult(ResultSet rs, String columnName) throws SQLException {
  8. int i = rs.getInt(columnName);
  9. return SexEnum.getSexEnum(i);
  10. }
  11. @Override
  12. public SexEnum getNullableResult(ResultSet rs, int columnIndex) throws SQLException {
  13. int i = rs.getInt(columnIndex);
  14. return SexEnum.getSexEnum(i);
  15. }
  16. @Override
  17. public SexEnum getNullableResult(CallableStatement cs, int columnIndex) throws SQLException {
  18. int i = cs.getInt(columnIndex);
  19. return SexEnum.getSexEnum(i);
  20. }
  21. }

typeHandler注意点

  • 在编写自定义处理器的时候我们得之处Javatype、jdbctype。两者不是必填。但至少得有一个。正常我们默认javatype是必填的。
  • 填写的方式有三种
    • 通过MappedTypes、MappedJdbcTypes分别指定javatype、jdbctype
    • 通过在mybatis-config.xml中配置typeHandlers进行注解。里面也有这两个属性的配置。
    • 通过在mapper.xml的resultmap中再次指定某个字段的typehandler.
  • TypeHandler为我们提供了Java到jdbc数据的转换桥梁。极大的方便了我们平时的开发。让我们开发期间忽略数据的转换这么糟心的事情。
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/683342
推荐阅读
相关标签
  

闽ICP备14008679号