您好,登錄后才能下訂單哦!
今天小編給大家分享一下怎么使用Springboot封裝一個(gè)自適配的數(shù)據(jù)單位轉(zhuǎn)換工具類(lèi)的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
平時(shí)做一些統(tǒng)計(jì)數(shù)據(jù),經(jīng)常從數(shù)據(jù)庫(kù)或者是從接口獲取出來(lái)的數(shù)據(jù),單位是跟業(yè)務(wù)需求不一致的。
比如, 我們拿出來(lái)的 分, 實(shí)際上要是元
又比如,我們拿到的數(shù)據(jù)需要 乘以100 返回給前端做 百分比展示
又比如, 千分比轉(zhuǎn)換
又比如,拿出來(lái)的金額需要變成 萬(wàn)為單位
又比如,需要保留2位小數(shù)
......
等等等等。
平時(shí)我們?cè)趺锤悖?/p>
很多時(shí)候拿到的是一個(gè)數(shù)據(jù)集合list,就需要去遍歷然后根據(jù)每個(gè)DTO的屬性去做相關(guān)單位轉(zhuǎn)換。
一直get 完 set ,get 完 set ,get 完 set ,get 完 set ,get 完 set ,人都麻了。
就像這樣:
所以,如果通過(guò)反射自動(dòng)匹配出來(lái)一些操作轉(zhuǎn)換,是不是就看代碼看起來(lái)舒服一點(diǎn),人也輕松一點(diǎn)。
答案: 是的
然后,我就搞了。
① 初步的封裝,通過(guò)map去標(biāo)記需要轉(zhuǎn)換的 類(lèi)屬性字段
② 進(jìn)一步的封裝, 配合老朋友自定義注解搞事情
產(chǎn)品:
支付總金額 換成萬(wàn) 為單位, 方便運(yùn)營(yíng)統(tǒng)計(jì) ;
那個(gè)什么計(jì)數(shù),要是百分比的 ;
然后還有一個(gè)是千分比;
另外,還有2個(gè)要保留2位小數(shù);
還有啊,那個(gè)。。。。。。
我:
別說(shuō)了,喝口水吧。
拿到的數(shù)據(jù)都在這個(gè)DTO里面 :
思路玩法:
a.通過(guò)反射拿出字段
b.配合傳入的轉(zhuǎn)換標(biāo)記Map 匹配哪些字段需要操作
c.然后從map取出相關(guān)字段的具體操作是什么,然后執(zhí)行轉(zhuǎn)換操作
d.重新賦值
① 簡(jiǎn)單弄個(gè)枚舉,列出現(xiàn)在需求上的轉(zhuǎn)換操作類(lèi)型
UnitConvertType.java
/** * @Author : JCccc * @CreateTime : 2023/01/14 * @Description : **/ public enum UnitConvertType { /** * 精度 */ R, /** * 萬(wàn)元 */ B, /** * 百分 */ PERCENTAGE, /** * 千分 */ PERMIL }
② 核心封裝的轉(zhuǎn)換函數(shù)
UnitConvertUtil.java
import lombok.extern.slf4j.Slf4j; import java.lang.reflect.Field; import java.math.BigDecimal; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; /** * @Author : JCccc * @CreateTime : 2023/01/14 * @Description : **/ @Slf4j public class UnitConvertUtil { public static <T> void unitMapConvert(List<T> list, Map<String, UnitConvertType> propertyMap) { for (T t : list) { Field[] declaredFields = t.getClass().getDeclaredFields(); for (Field declaredField : declaredFields) { if (propertyMap.keySet().stream().anyMatch(x -> x.equals(declaredField.getName()))) { try { declaredField.setAccessible(true); Object o = declaredField.get(t); UnitConvertType unitConvertType = propertyMap.get(declaredField.getName()); if (o != null) { if (unitConvertType.equals(UnitConvertType.PERCENTAGE)) { BigDecimal bigDecimal = ((BigDecimal) o).multiply(new BigDecimal(100)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.PERMIL)) { BigDecimal bigDecimal = ((BigDecimal) o).multiply(new BigDecimal(1000)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.B)) { BigDecimal bigDecimal = ((BigDecimal) o).divide(new BigDecimal(10000)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.R)) { BigDecimal bigDecimal = ((BigDecimal) o).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } } } catch (Exception ex) { log.error("處理失敗"); continue; } } } } } public static void main(String[] args) { //獲取模擬數(shù)據(jù) List<MySumReportDTO> list = getMySumReportList(); Map<String, UnitConvertType> map =new HashMap<>(); map.put("payTotalAmount", UnitConvertType.B); map.put("jcAmountPercentage", UnitConvertType.PERCENTAGE); map.put("jcCountPermillage", UnitConvertType.PERMIL); map.put("length", UnitConvertType.R); map.put("width", UnitConvertType.R); unitMapConvert(list,map); System.out.println("通過(guò)map標(biāo)識(shí)的自動(dòng)轉(zhuǎn)換玩法:"+list.toString()); } private static List<MySumReportDTO> getMySumReportList() { MySumReportDTO mySumReportDTO = new MySumReportDTO(); mySumReportDTO.setPayTotalAmount(new BigDecimal(1100000)); mySumReportDTO.setJcAmountPercentage(BigDecimal.valueOf(0.695)); mySumReportDTO.setJcCountPermillage(BigDecimal.valueOf(0.7894)); mySumReportDTO.setLength(BigDecimal.valueOf(1300.65112)); mySumReportDTO.setWidth(BigDecimal.valueOf(6522.12344)); MySumReportDTO mySumReportDTO1 = new MySumReportDTO(); mySumReportDTO1.setPayTotalAmount(new BigDecimal(2390000)); mySumReportDTO1.setJcAmountPercentage(BigDecimal.valueOf(0.885)); mySumReportDTO1.setJcCountPermillage(BigDecimal.valueOf(0.2394)); mySumReportDTO1.setLength(BigDecimal.valueOf(1700.64003)); mySumReportDTO1.setWidth(BigDecimal.valueOf(7522.12344)); List<MySumReportDTO> list = new ArrayList<>(); list.add(mySumReportDTO); list.add(mySumReportDTO1); return list; } }
代碼簡(jiǎn)析:
看看怎么調(diào)用的:
public static void main(String[] args) { //獲取模擬數(shù)據(jù) List<MySumReportDTO> list = getMySumReportList(); System.out.println("轉(zhuǎn)換前:"+list.toString()); Map<String, UnitConvertType> map =new HashMap<>(); map.put("payTotalAmount", UnitConvertType.B); map.put("jcAmountPercentage", UnitConvertType.PERCENTAGE); map.put("jcCountPermillage", UnitConvertType.PERMIL); map.put("length", UnitConvertType.R); map.put("width", UnitConvertType.R); unitMapConvert(list,map); System.out.println("通過(guò)map標(biāo)識(shí)的自動(dòng)轉(zhuǎn)換玩法:"+list.toString()); }
代碼簡(jiǎn)析:
效果:
整個(gè)集合list的 對(duì)應(yīng)字段都自動(dòng)轉(zhuǎn)換成功(轉(zhuǎn)換邏輯想怎么樣就自己在對(duì)應(yīng)if里面調(diào)整、拓展):
實(shí)說(shuō)實(shí)話(huà),第一步的封裝程度已經(jīng)夠用了,就是傳map標(biāo)識(shí)出來(lái)哪些需要轉(zhuǎn)換,對(duì)應(yīng)轉(zhuǎn)換枚舉類(lèi)型是什么。
其實(shí)我感覺(jué)是夠用的。
但是么,為了用起來(lái)更加方便,或者說(shuō) 更加地可拓展, 那么配合自定義注解是更nice的。
開(kāi)搞。
創(chuàng)建一個(gè)自定義注解 ,JcBigDecConvert.java
import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * @Author : JCccc * @CreateTime : 2023/01/14 * @Description : **/ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface JcBigDecConvert { UnitConvertType name(); }
怎么用? 就是在我們的報(bào)表DTO里面,去標(biāo)記字段。
示例:
MyYearSumReportDTO.java
ps: 可以看到我們?cè)谧侄紊厦媸褂昧俗远x注解
import lombok.Data; import java.io.Serializable; import java.math.BigDecimal; /** * @Author : JCccc * @CreateTime : 2023/2/03 * @Description : **/ @Data public class MyYearSumReportDTO implements Serializable { private static final long serialVersionUID = 5285987517581372888L; //支付總金額 @JcBigDecConvert(name=UnitConvertType.B) private BigDecimal payTotalAmount; //jc金額百分比 @JcBigDecConvert(name=UnitConvertType.PERCENTAGE) private BigDecimal jcAmountPercentage; //jc計(jì)數(shù)千分比 @JcBigDecConvert(name=UnitConvertType.PERMIL) private BigDecimal jcCountPermillage; //保留2位 @JcBigDecConvert(name=UnitConvertType.R) private BigDecimal length; //保留2位 @JcBigDecConvert(name=UnitConvertType.R) private BigDecimal width; }
然后針對(duì)配合我們的自定義,封一個(gè)轉(zhuǎn)換函數(shù),反射獲取屬性字段,然后解析注解,然后做對(duì)應(yīng)轉(zhuǎn)換操作。
代碼:
public static <T> void unitAnnotateConvert(List<T> list) { for (T t : list) { Field[] declaredFields = t.getClass().getDeclaredFields(); for (Field declaredField : declaredFields) { try { if (declaredField.getName().equals("serialVersionUID")){ continue; } JcBigDecConvert myFieldAnn = declaredField.getAnnotation(JcBigDecConvert.class); if(Objects.isNull(myFieldAnn)){ continue; } UnitConvertType unitConvertType = myFieldAnn.name(); declaredField.setAccessible(true); Object o = declaredField.get(t); if (Objects.nonNull(o)) { if (unitConvertType.equals(UnitConvertType.PERCENTAGE)) { BigDecimal bigDecimal = ((BigDecimal) o).multiply(new BigDecimal(100)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.PERMIL)) { BigDecimal bigDecimal = ((BigDecimal) o).multiply(new BigDecimal(1000)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.B)) { BigDecimal bigDecimal = ((BigDecimal) o).divide(new BigDecimal(10000)).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } if (unitConvertType.equals(UnitConvertType.R)) { BigDecimal bigDecimal = ((BigDecimal) o).setScale(2, BigDecimal.ROUND_HALF_UP); declaredField.set(t, bigDecimal); } } } catch (Exception ex) { log.error("處理失敗"); } } } }
寫(xiě)個(gè)調(diào)用示例看看效果:
public static void main(String[] args) { List<MyYearSumReportDTO> yearsList = getMyYearSumReportList(); unitAnnotateConvert(yearsList); System.out.println("通過(guò)注解標(biāo)識(shí)的自動(dòng)轉(zhuǎn)換玩法:"+yearsList.toString()); } private static List<MyYearSumReportDTO> getMyYearSumReportList() { MyYearSumReportDTO mySumReportDTO = new MyYearSumReportDTO(); mySumReportDTO.setPayTotalAmount(new BigDecimal(1100000)); mySumReportDTO.setJcAmountPercentage(BigDecimal.valueOf(0.695)); mySumReportDTO.setJcCountPermillage(BigDecimal.valueOf(0.7894)); mySumReportDTO.setLength(BigDecimal.valueOf(1300.65112)); mySumReportDTO.setWidth(BigDecimal.valueOf(6522.12344)); MyYearSumReportDTO mySumReportDTO1 = new MyYearSumReportDTO(); mySumReportDTO1.setPayTotalAmount(new BigDecimal(2390000)); mySumReportDTO1.setJcAmountPercentage(BigDecimal.valueOf(0.885)); mySumReportDTO1.setJcCountPermillage(BigDecimal.valueOf(0.2394)); mySumReportDTO1.setLength(BigDecimal.valueOf(1700.64003)); mySumReportDTO1.setWidth(BigDecimal.valueOf(7522.12344)); List<MyYearSumReportDTO> list = new ArrayList<>(); list.add(mySumReportDTO); list.add(mySumReportDTO1); return list; }
效果也是很OK:
以上就是“怎么使用Springboot封裝一個(gè)自適配的數(shù)據(jù)單位轉(zhuǎn)換工具類(lèi)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。