In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article mainly introduces the relevant knowledge of "how to use the qualifiedByName of mapstruct". The editor shows you the operation process through the actual case. The operation method is simple, fast and practical. I hope this article "how to use the qualifiedByName of mapstruct" can help you solve the problem.
It can be used to format decimal places, and so on. Formatting decimal places is done when po is converted to vo, so there is no need to write separate code to deal with decimal places.
1 reference pom1, can use mapstruct annotations normally, but will not generate Impl class
Org.mapstruct mapstruct-jdk8 1.2.0.Final
The Impl class is generated by referencing pom2.
2 define ConvertMapper
Package com.weather.weatherexpert.common.model.mapper;import com.weather.weatherexpert.common.model.po.AreaPO;import com.weather.weatherexpert.common.model.vo.AreaVO;import org.mapstruct.MapMapping;import org.mapstruct.Mapper;import org.mapstruct.Mapping;import org.mapstruct.Named;import org.mapstruct.factory.Mappers;import java.text.DecimalFormat;/** *
Title:
*
Description:
* * / @ Mapperpublic interface ConvertMapper {ConvertMapper INSTANCE = Mappers.getMapper (ConvertMapper.class); @ Mapping (source = "pm25", target = "pm25", qualifiedByName = "formatDoubleDef") AreaVO areaPO2areaVO (AreaPO areaPO); @ Named ("formatDoubleDef") / / requires a name, otherwise an error can be reported, which can be consistent with the method name, or inconsistent with default Double formatDouble (Double source) {DecimalFormat decimalFormat = new DecimalFormat ("0.00"). / / format if (source = = null) {source = 0. 0;} return Double.parseDouble (decimalFormat.format (source));}}
3 define source and target classes
Public class AreaPO {private String cityName; private Integer haveAir; private Double pm25; private String pm10Str;.} public class AreaVO {private String cityName; private Integer haveAir; private Double pm25; private String pm25Str; private Double pm10;. }
4 look at the generated Impl class ConvertMapperImpl
Package com.weather.weatherexpert.common.model.mapper;import com.weather.weatherexpert.common.model.po.AreaPO;import com.weather.weatherexpert.common.model.vo.AreaVO;public class ConvertMapperImpl implements ConvertMapper {public ConvertMapperImpl () {} public AreaVO areaPO2areaVO (AreaPO areaPO) {if (areaPO = = null) {return null;} else {AreaVO areaVO = new AreaVO () AreaVO.setPm25 (this.formatDouble (areaPO.getPm25 (); areaVO.setCityName (areaPO.getCityName ()); areaVO.setHaveAir (areaPO.getHaveAir ()); return areaVO;}}
5 Test
AreaPO areaPO = new AreaPO (Xinzhou, 1, 1.256879); AreaVO areaVO = ConvertMapper.INSTANCE.areaPO2areaVO (areaPO); logger.info ("JSON.toJSONString (areaVO):" + JSON.toJSONString (areaVO))
Output:
JSON.toJSONString (areaVO): {"cityName": "Xinzhou", "haveAir": 1, "pm25": 1.26}
This is the end of the content about "how to use the qualifiedByName of mapstruct". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.