您好,登录后才能下订单哦!
本篇内容主要讲解“MyBatis数据库字段该如何映射Java枚举”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“MyBatis数据库字段该如何映射Java枚举”吧!
有时候我们需要将数据库的字段对Java的枚举类型进行映射,比如说我们有一个汽车配件类型的枚举
public enum ProductType implements Localisable {TYPE1("配件"), TYPE2("车品"); private String value; private ProductType(String value) {this.value = value; }@Override public String getValue() {return this.value; } }
该枚举类型实现了一个接口
public interface Localisable { String getValue();}
有一个配件分类的实体类,包含了该枚举字段(此处只包含部分字段属性)
/** * 配件分类 */@AllArgsConstructor@NoArgsConstructorpublic class ProviderProductLevel {@Getter @Setter private Long id; @Getter @Setter private String code; @Getter @Setter private String name; @Getter @Setter private Integer sort; @Getter @Setter private Integer level; @Getter @Setter private ProductType productType; @Getter @Setter private String pictureUrl; }
而在数据库中的表结构如下
dao方法如下(通过id查找一个配件分类,并实例化)
@Mapperpublic interface LevelDao { ProviderProductLevel findLevel1(Long id);}
mapper映射文件如下
<?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.cloud.productprovider.dao.LevelDao"> <resultMap id="level1Map" type="com.cloud.productprovider.composite.ProviderProductLevel"> <id property="id" column="id" /> <result property="code" column="code" /> <result property="name" column="name" /> <result property="sort" column="sort" /> <result property="productType" column="product_type" typeHandler="com.cloud.productprovider.untils.DbEnumTypeHandler" /> </resultMap> <select id="findLevel1" resultMap="level1Map" parameterType="java.lang.Long" resultType="com.cloud.productprovider.composite.ProviderProductLevel"> select id,code,name,sort,product_type from product_level<where> id=#{id}</where> </select></mapper>
我们可以看到这里有一个映射处理器typeHandler="com.cloud.productprovider.untils.DbEnumTypeHandler"
该映射处理器的代码如下
@AllArgsConstructorpublic class DbEnumTypeHandler extends BaseTypeHandler<Localisable> {private Class<Localisable> type; @Override public void setNonNullParameter(PreparedStatement ps, int i, Localisable parameter, JdbcType jdbcType) throws SQLException { ps.setString(i,parameter.getValue()); }@Override public Localisable getNullableResult(ResultSet rs, String columnName) throws SQLException { String value = rs.getString(columnName); if (rs.wasNull()) {return null; }else {return convert(value); } }@Override public Localisable getNullableResult(ResultSet rs, int columnIndex) throws SQLException { String value = rs.getString(columnIndex); if (rs.wasNull()) {return null; }else {return convert(value); } }@Override public Localisable getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { String value = cs.getString(columnIndex); if (cs.wasNull()) {return null; }else {return convert(value); } }private Localisable convert(String value) { Localisable[] dbEnums = type.getEnumConstants(); for (Localisable dbEnum : dbEnums) {if (dbEnum.getValue().equals(value)) {return dbEnum; } }return null; } }
经测试返回的结果对象的Json字符串如下
{"code":"0000001","id":1,"name":"油品","productType":"TYPE1","sort":1}
到此,相信大家对“MyBatis数据库字段该如何映射Java枚举”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。