在編碼過程當中,常常會遇到用某個數值來表示某種狀態、類型或者階段的狀況,好比有這樣一個枚舉:java
public enum ComputerState { OPEN(10), //開啓 CLOSE(11), //關閉 OFF_LINE(12), //離線 FAULT(200), //故障 UNKNOWN(255); //未知 private int code; ComputerState(int code) { this.code = code; } }
一般咱們但願將表示狀態的數值存入數據庫,即ComputerState.OPEN
存入數據庫取值爲10
。sql
首先,咱們先看看MyBatis是否可以知足咱們的需求。 MyBatis內置了兩個枚舉轉換器分別是:org.apache.ibatis.type.EnumTypeHandler
和org.apache.ibatis.type.EnumOrdinalTypeHandler
。數據庫
這是默認的枚舉轉換器,該轉換器將枚舉實例轉換爲實例名稱的字符串,即將ComputerState.OPEN
轉換OPEN
。apache
顧名思義這個轉換器將枚舉實例的ordinal屬性做爲取值,即ComputerState.OPEN
轉換爲0
,ComputerState.CLOSE
轉換爲1
。 使用它的方式是在MyBatis配置文件中定義:segmentfault
<typeHandlers> <typeHandler handler="org.apache.ibatis.type.EnumOrdinalTypeHandler" javaType="com.example.entity.enums.ComputerState"/> </typeHandlers>
以上的兩種轉換器都不能知足咱們的需求,因此看起來要本身編寫一個轉換器了。mybatis
MyBatis提供了org.apache.ibatis.type.BaseTypeHandler
類用於咱們本身擴展類型轉換器,上面的EnumTypeHandler
和EnumOrdinalTypeHandler
也都實現了這個接口。app
咱們須要一個接口來肯定某部分枚舉類的行爲。以下:ide
public interface BaseCodeEnum { int getCode(); }
該接口只有一個返回編碼的方法,返回值將被存入數據庫。工具
就拿上面的ComputerState
來實現BaseCodeEnum
接口:測試
public enum ComputerState implements BaseCodeEnum{ OPEN(10), //開啓 CLOSE(11), //關閉 OFF_LINE(12), //離線 FAULT(200), //故障 UNKNOWN(255); //未知 private int code; ComputerState(int code) { this.code = code; } @Override public int getCode() { return this.code; } }
如今咱們能順利的將枚舉轉換爲某個數值了,還須要一個工具將數值轉換爲枚舉實例。
public class CodeEnumUtil { public static <E extends Enum<?> & BaseCodeEnum> E codeOf(Class<E> enumClass, int code) { E[] enumConstants = enumClass.getEnumConstants(); for (E e : enumConstants) { if (e.getCode() == code) return e; } return null; } }
準備工做作的差很少了,是時候開始編寫轉換器了。 BaseTypeHandler<T>
一共須要實現4個方法:
void setNonNullParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType)
用於定義設置參數時,該如何把Java類型的參數轉換爲對應的數據庫類型T getNullableResult(ResultSet rs, String columnName)
用於定義經過字段名稱獲取字段數據時,如何把數據庫類型轉換爲對應的Java類型T getNullableResult(ResultSet rs, int columnIndex)
用於定義經過字段索引獲取字段數據時,如何把數據庫類型轉換爲對應的Java類型T getNullableResult(CallableStatement cs, int columnIndex)
用定義調用存儲過程後,如何把數據庫類型轉換爲對應的Java類型我是這樣實現的:
public class CodeEnumTypeHandler<E extends Enum<?> & BaseCodeEnum> extends BaseTypeHandler<BaseCodeEnum> { private Class<E> type; public CodeEnumTypeHandler(Class<E> type) { if (type == null) { throw new IllegalArgumentException("Type argument cannot be null"); } this.type = type; } @Override public void setNonNullParameter(PreparedStatement ps, int i, BaseCodeEnum parameter, JdbcType jdbcType) throws SQLException { ps.setInt(i, parameter.getCode()); } @Override public E getNullableResult(ResultSet rs, String columnName) throws SQLException { int i = rs.getInt(columnName); if (rs.wasNull()) { return null; } else { try { return CodeEnumUtil.codeOf(type, i); } catch (Exception ex) { throw new IllegalArgumentException("Cannot convert " + i + " to " + type.getSimpleName() + " by ordinal value.", ex); } } } @Override public E getNullableResult(ResultSet rs, int columnIndex) throws SQLException { int i = rs.getInt(columnIndex); if (rs.wasNull()) { return null; } else { try { return CodeEnumUtil.codeOf(type, i); } catch (Exception ex) { throw new IllegalArgumentException("Cannot convert " + i + " to " + type.getSimpleName() + " by ordinal value.", ex); } } } @Override public E getNullableResult(CallableStatement cs, int columnIndex) throws SQLException { int i = cs.getInt(columnIndex); if (cs.wasNull()) { return null; } else { try { return CodeEnumUtil.codeOf(type, i); } catch (Exception ex) { throw new IllegalArgumentException("Cannot convert " + i + " to " + type.getSimpleName() + " by ordinal value.", ex); } } } }
接下來須要指定哪一個類使用咱們本身編寫轉換器進行轉換,在MyBatis配置文件中配置以下:
<typeHandlers> <typeHandler handler="com.example.typeHandler.CodeEnumTypeHandler" javaType="com.example.entity.enums.ComputerState"/> </typeHandlers>
搞定! 經測試ComputerState.OPEN
被轉換爲10
,ComputerState.UNKNOWN
被轉換爲255
,達到了預期的效果。
在第5步時,咱們在MyBatis中添加typeHandler
用於指定哪些類使用咱們自定義的轉換器,一旦系統中的枚舉類多了起來,MyBatis的配置文件維護起來會變得很是麻煩,也容易出錯。如何解決呢? 在Spring
中咱們可使用JavaConfig
方式來干預SqlSessionFactory
的建立過程,來完成動態的轉換器指定。 思路
sqlSessionFactory.getConfiguration().getTypeHandlerRegistry()
取得類型轉換器註冊器BaseCodeEnum
接口的枚舉類BaseCodeEnum
的類註冊使用CodeEnumTypeHandler
進行轉換。實現以下:
MyBatisConfig.java
@Configuration @ConfigurationProperties(prefix = "mybatis") public class MyBatisConfig { private String configLocation; private String mapperLocations; @Bean public SqlSessionFactory sqlSessionFactory(DataSource dataSource, ResourcesUtil resourcesUtil) throws Exception { SqlSessionFactoryBean factory = new SqlSessionFactoryBean(); factory.setDataSource(dataSource); // 設置配置文件地址 ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); factory.setConfigLocation(resolver.getResource(configLocation)); factory.setMapperLocations(resolver.getResources(mapperLocations)); SqlSessionFactory sqlSessionFactory = factory.getObject(); // ----------- 動態加載實現BaseCodeEnum接口的枚舉,使用CodeEnumTypeHandler轉換器 // 取得類型轉換註冊器 TypeHandlerRegistry typeHandlerRegistry = sqlSessionFactory.getConfiguration().getTypeHandlerRegistry(); // 掃描全部實體類 List<String> classNames = resourcesUtil.list("com/example", "/**/entity"); for (String className : classNames) { // 處理路徑成爲類名 className = className.replace('/', '.').replaceAll("\\.class", ""); // 取得Class Class<?> aClass = Class.forName(className, false, getClass().getClassLoader()); // 判斷是否實現了BaseCodeEnum接口 if (aClass.isEnum() && BaseCodeEnum.class.isAssignableFrom(aClass)) { // 註冊 typeHandlerRegistry.register(className, "com.example.typeHandler.CodeEnumTypeHandler"); } } // --------------- end return sqlSessionFactory; } public String getConfigLocation() { return configLocation; } public void setConfigLocation(String configLocation) { this.configLocation = configLocation; } public String getMapperLocations() { return mapperLocations; } public void setMapperLocations(String mapperLocations) { this.mapperLocations = mapperLocations; } }
ResourcesUtil.java
@Component public class ResourcesUtil { private final ResourcePatternResolver resourceResolver; public ResourcesUtil() { this.resourceResolver = new PathMatchingResourcePatternResolver(getClass().getClassLoader()); } /** * 返回路徑下全部class * * @param rootPath 根路徑 * @param locationPattern 位置表達式 * @return * @throws IOException */ public List<String> list(String rootPath, String locationPattern) throws IOException { Resource[] resources = resourceResolver.getResources("classpath*:" + rootPath + locationPattern + "/**/*.class"); List<String> resourcePaths = new ArrayList<>(); for (Resource resource : resources) { resourcePaths.add(preserveSubpackageName(resource.getURI(), rootPath)); } return resourcePaths; } }
以上就是我對如何在MyBatis中優雅的使用枚舉的探索。若是你還有更優的解決方案,請必定在評論中告知,萬分感激。