InvalidDefinitionException:未找到内部类的序列化程序 [英] InvalidDefinitionException: No serializer found for inner class

查看:77
本文介绍了InvalidDefinitionException:未找到内部类的序列化程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这个类,我想以 JSON 格式返回到 RestAPI 调用

I have this class that I want to return to a RestAPI call in JSON format

return ResponseEntity.ok().cacheControl(CacheControl.maxAge(5, TimeUnit.MINUTES))
                    .body(hotelChart2);

类:

public class HotelChart2 {



    public HotelChart2() {
        super();
    }

    public class Statistics {

         double min;
         double max;
         double average;

         public Statistics() {
            super();
         }

        public Statistics(double min, double max, double average) {
            super();
            this.min = min;
            this.max = max;
            this.average = average;
        }

    }

    Map<LocalDateTime, DoubleSummaryStatistics> las24HPerHour;

    Map<LocalDate, Statistics> last30DPerDay;

    Map<LocalDate, Statistics> last3MPerDay;

    Map<LocalDate, Statistics> last6MPerDay;

    Map<LocalDate, Statistics> last1YPerDay;



    public Map<LocalDateTime, DoubleSummaryStatistics> getLas24HPerHour() {
        return las24HPerHour;
    }

    public void setLas24HPerHour(Map<LocalDateTime, DoubleSummaryStatistics> las24hPerHour) {
        las24HPerHour = las24hPerHour;
    }

    public Map<LocalDate, Statistics> getLast30DPerDay() {
        return last30DPerDay;
    }

    public void setLast30DPerDay(Map<LocalDate, Statistics> last30dPerDay) {
        last30DPerDay = last30dPerDay;
    }

    public Map<LocalDate, Statistics> getLast3MPerDay() {
        return last3MPerDay;
    }

    public void setLast3MPerDay(Map<LocalDate, Statistics> last3mPerDay) {
        last3MPerDay = last3mPerDay;
    }

    public Map<LocalDate, Statistics> getLast6MPerDay() {
        return last6MPerDay;
    }

    public void setLast6MPerDay(Map<LocalDate, Statistics> last6mPerDay) {
        last6MPerDay = last6mPerDay;
    }




    public Map<LocalDate, Statistics> getLast1YPerDay() {
        return last1YPerDay;
    }

    public void setLast1YPerDay(Map<LocalDate, Statistics> last1yPerDay) {
        last1YPerDay = last1yPerDay;
    }


}

但我收到此错误:

Type definition error: [simple type, class com.tdk.api.json.HotelChart2$Statistics]; nested exception is com.fasterxml.jackson.databind.exc.InvalidDefinitionException: No serializer found for class com.tdk.api.json.HotelChart2$Statistics and no properties discovered to create BeanSerializer (to avoid exception, disable SerializationFeature.FAIL_ON_EMPTY_BEANS) (through reference chain: com.tdk.api.json.HotelChart2["last3MPerDay"]->java.util.HashMap["2019-01-27"])
    at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:293)
    at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:103)
    at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:290)

推荐答案

这两个解决方案中的任何一个都有效!

公开所有成员(默认情况下,Jackson 处理公共成员字段)

 public double min; //note: members are made public
 public double max;
 public double average;
 public Map<LocalDateTime, DoubleSummaryStatistics> las24HPerHour;
 // ..... modify all map as public

如果你想修改 Jackson 默认属性,那么修改 ObjectMapper

ObjectMapper objectMapper = new ObjectMapper();
objectMapper.setVisibility(mapper.getVisibilityChecker()
             .withFieldVisibility(JsonAutoDetect.Visibility.ANY));

这篇关于InvalidDefinitionException:未找到内部类的序列化程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆