zoukankan      html  css  js  c++  java
  • Mybatis resultMap空值映射问题解决

    Mybatis在使用resultMap来映射查询结果中的列,如果查询结果中包含空值的列(不是null),则Mybatis在映射的时候,不会映射这个字段,例如 查询 name,sex,age,数据库中的age字段没有值,Mybatis返回的map中只映射了 name和sex字段,而age字段则没有包含。

    网上找到两种解决办法:

    一、使用Mybatis config配置

    创建configuration.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD SQL MAP Config 3.1//EN"
    "http://mybatis.org/dtd/mybatis-3-config.dtd">
    <configuration>
      <settings>
          <setting name="callSettersOnNulls" value="true"/>
      </settings>
    </configuration>

    配置Mybatis的SqlSessionFactoryBean

    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="configLocation" value="classpath:/META-INF/spring/configuration.xml" />
        <property name="mapperLocations"
        value="classpath:/META-INF/spring/mybatis/modelMap/*.xml" />
    </bean>

    在这种配置中,age将以null值映射到map中。

    二、如果想要配置age的默认值,则可以建立一个类,实现Mybatis的TypeHandler接口

    public class EmptyStringIfNull implements TypeHandler<String> {
    
        @Override
        public String getResult(ResultSet rs, String columnName) throws SQLException {
            return (rs.getString(columnName) == null) ? "" : rs.getString(columnName); 
        }
    
        @Override
        public String getResult(ResultSet rs, int columnIndex) throws SQLException {
            return (rs.getString(columnIndex) == null) ? "" : rs.getString(columnIndex);
        }
    
        @Override
        public String getResult(CallableStatement cs, int columnIndex)
                throws SQLException {
            return (cs.getString(columnIndex) == null) ? "" : cs.getString(columnIndex);
        }
    
        @Override
        public void setParameter(PreparedStatement ps, int arg1, String str,
                JdbcType jdbcType) throws SQLException {
        }
    }; 

    继续在resultMap中使用,即可配置age的默认值(上述代码中age的默认值为"")

    <resultMap id="list" type="java.util.LinkedHashMap">
        <result property="name" column="name" />
        <result property="sex" column="sex" />
        <result property="age" column="age"     typeHandler="com.demo.EmptyStringIfNull"/>
    </resultMap>
  • 相关阅读:
    default.js 下的 setPromise(WinJS.UI.processAll());
    选择排序
    插入排序
    16、css实现div中图片占满整个屏幕
    21、解决关于 vue项目中 点击按钮路由多了个问号
    15、vue项目封装axios并访问接口
    17、在vue中引用移动端框架Vux:
    24、vuex刷新页面数据丢失解决办法
    18、git提交代码并将develop分支合并到master分支上
    20、解决Vue使用bus兄弟组件间传值,第一次监听不到数据
  • 原文地址:https://www.cnblogs.com/wangxufeng/p/4503579.html
Copyright © 2011-2022 走看看