這篇文章給大家介紹枚舉如何在MyBatis中使用,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
創(chuàng)新互聯(lián)長期為近千家客戶提供的網(wǎng)站建設(shè)服務,團隊從業(yè)經(jīng)驗10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務;打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為巨野企業(yè)提供專業(yè)的網(wǎng)站制作、做網(wǎng)站,巨野網(wǎng)站改版等技術(shù)服務。擁有十多年豐富建站經(jīng)驗和眾多成功案例,為您定制開發(fā)。
具體方法如下:
public enum ComputerState { OPEN(10), //開啟 CLOSE(11), //關(guān)閉 OFF_LINE(12), //離線 FAULT(200), //故障 UNKNOWN(255); //未知 private int code; ComputerState(int code) { this.code = code; } }
通常我們希望將表示狀態(tài)的數(shù)值存入數(shù)據(jù)庫,即ComputerState.OPEN
存入數(shù)據(jù)庫取值為10。
探索
首先,我們先看看MyBatis是否能夠滿足我們的需求。
MyBatis內(nèi)置了兩個枚舉轉(zhuǎn)換器分別是:org.apache.ibatis.type.EnumTypeHandler
和org.apache.ibatis.type.EnumOrdinalTypeHandler
。
EnumTypeHandler
這是默認的枚舉轉(zhuǎn)換器,該轉(zhuǎn)換器將枚舉實例轉(zhuǎn)換為實例名稱的字符串,即將ComputerState.OPEN
轉(zhuǎn)換OPEN。
EnumOrdinalTypeHandler
顧名思義這個轉(zhuǎn)換器將枚舉實例的ordinal屬性作為取值,即ComputerState.OPEN
轉(zhuǎn)換為0,ComputerState.CLOSE
轉(zhuǎn)換為1。
使用它的方式是在MyBatis配置文件中定義:
以上的兩種轉(zhuǎn)換器都不能滿足我們的需求,所以看起來要自己編寫一個轉(zhuǎn)換器了。
方案
MyBatis提供了org.apache.ibatis.type.BaseTypeHandler
類用于我們自己擴展類型轉(zhuǎn)換器,上面的EnumTypeHandler和EnumOrdinalTypeHandler也都實現(xiàn)了這個接口。
1. 定義接口
我們需要一個接口來確定某部分枚舉類的行為。如下:
public interface BaseCodeEnum { int getCode(); }
該接口只有一個返回編碼的方法,返回值將被存入數(shù)據(jù)庫。
2. 改造枚舉
就拿上面的ComputerState來實現(xiàn)BaseCodeEnum接口:
public enum ComputerState implements BaseCodeEnum{ OPEN(10), //開啟 CLOSE(11), //關(guān)閉 OFF_LINE(12), //離線 FAULT(200), //故障 UNKNOWN(255); //未知 private int code; ComputerState(int code) { this.code = code; } @Override public int getCode() { return this.code; } }
3. 編寫一個轉(zhuǎn)換工具類
現(xiàn)在我們能順利的將枚舉轉(zhuǎn)換為某個數(shù)值了,還需要一個工具將數(shù)值轉(zhuǎn)換為枚舉實例。
public class CodeEnumUtil { public static& BaseCodeEnum> E codeOf(Class enumClass, int code) { E[] enumConstants = enumClass.getEnumConstants(); for (E e : enumConstants) { if (e.getCode() == code) return e; } return null; } }
4. 自定義類型轉(zhuǎn)換器
準備工作做的差不多了,是時候開始編寫轉(zhuǎn)換器了。
BaseTypeHandler
一共需要實現(xiàn)4個方法:
void setNonNullParameter(PreparedStatement ps, int i, T parameter, JdbcType jdbcType)
T getNullableResult(ResultSet rs, String columnName)
T getNullableResult(ResultSet rs, int columnIndex)
T getNullableResult(CallableStatement cs, int columnIndex)
我是這樣實現(xiàn)的:
public class CodeEnumTypeHandler& BaseCodeEnum> extends BaseTypeHandler { private Class type; public CodeEnumTypeHandler(Class 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); } } } }
5. 使用
接下來需要指定哪個類使用我們自己編寫轉(zhuǎn)換器進行轉(zhuǎn)換,在MyBatis配置文件中配置如下:
搞定! 經(jīng)測試ComputerState.OPEN被轉(zhuǎn)換為10,ComputerState.UNKNOWN
被轉(zhuǎn)換為255,達到了預期的效果。
6. 優(yōu)化
在第5步時,我們在MyBatis中添加typeHandler用于指定哪些類使用我們自定義的轉(zhuǎn)換器,一旦系統(tǒng)中的枚舉類多了起來,MyBatis的配置文件維護起來會變得非常麻煩,也容易出錯。如何解決呢?
在Spring Boot中我們可以干預SqlSessionFactory的創(chuàng)建過程,來完成動態(tài)的轉(zhuǎn)換器指定。
思路
sqlSessionFactory.getConfiguration().getTypeHandlerRegistry()
取得類型轉(zhuǎn)換器注冊器實現(xiàn)如下:
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); // 設(shè)置配置文件地址 ResourcePatternResolver resolver = new PathMatchingResourcePatternResolver(); factory.setConfigLocation(resolver.getResource(configLocation)); factory.setMapperLocations(resolver.getResources(mapperLocations)); SqlSessionFactory sqlSessionFactory = factory.getObject(); // ----------- 動態(tài)加載實現(xiàn)BaseCodeEnum接口的枚舉,使用CodeEnumTypeHandler轉(zhuǎn)換器 // 取得類型轉(zhuǎn)換注冊器 TypeHandlerRegistry typeHandlerRegistry = sqlSessionFactory.getConfiguration().getTypeHandlerRegistry(); // 掃描所有實體類 ListclassNames = resourcesUtil.list("com/example", "/**/entity"); for (String className : classNames) { // 處理路徑成為類名 className = className.replace('/', '.').replaceAll("\\.class", ""); // 取得Class Class<?> aClass = Class.forName(className, false, getClass().getClassLoader()); // 判斷是否實現(xiàn)了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 Listlist(String rootPath, String locationPattern) throws IOException { Resource[] resources = resourceResolver.getResources("classpath*:" + rootPath + locationPattern + "/**/*.class"); List resourcePaths = new ArrayList<>(); for (Resource resource : resources) { resourcePaths.add(preserveSubpackageName(resource.getURI(), rootPath)); } return resourcePaths; } }
關(guān)于枚舉如何在MyBatis中使用就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。