如何去除数值类字段小数点后面多余的0

Blade 未结 2 173
chaoqi
chaoqi 2024-08-05 14:44

一、该问题的重现步骤是什么?

     用的springboot版本,4.0.1版本

     请问下如何在框架层面去除数值类字段小数点后面多余的0。

     之前自己用springboot都是照网上的办法,如下:

@Configuration
public class JacksonConfig {    

@Bean    
public ObjectMapper objectMapper() {        
  ObjectMapper objectMapper = new ObjectMapper();        
  SimpleModule module = new SimpleModule();        
  module.addSerializer(BigDecimal.class, new JsonSerializer() {            
      @Override            
      public void serialize(BigDecimal value, JsonGenerator gen, SerializerProvider serializers) throws IOException { 
                if (value != null) {                    
                     gen.writeString(value.stripTrailingZeros().toPlainString());            
              }        
          }        
     });        
     objectMapper.registerModule(module);        
     return objectMapper;    
   }}


但是现在加这样一个类后,日期类字段会变成一个字符串,反而数值的字段没有变化



二、你期待的结果是什么?实际看到的又是什么?


三、你正在使用的是什么产品,什么版本?在什么操作系统上?


四、请提供详细的错误堆栈信息,这很重要。


五、若有更多详细信息,请在下面提供。

2条回答
提交回复