对象成员变量未序列化

我有一个类Test,它有一个类型为 的成员变量NestedTest。


import com.fasterxml.jackson.annotation.JsonView;


class Test{


    String s1;


    @JsonView(ConvertView.class)

    int a;


    @JsonView(ConvertView.class)

    NestedTest nestedObj;

}



class NestedTest{

    int n;

    String s;

}

序列化类 Test 的对象后,字段nestedObj 显示为空。我猜测这是因为我禁用了默认视图包含,该视图包含也应用于 NestedTest 对象的字段。如果出现这种情况,我该如何预防呢?我想禁用包含没有附加视图的字段,仅适用于外部类,而不适用于对象成员变量的字段。


import com.fasterxml.jackson.databind.ObjectMapper;

import com.fasterxml.jackson.databind.ObjectWriter;

import com.fasterxml.jackson.databind.MapperFeature;

.........

.........

Test test =new Test();

........

........

ObjectWriter writer = new ObjectMapper().disable(MapperFeature.DEFAULT_VIEW_INCLUSION).writer();

String s= writer.withView(ConvertView.class).writeValueAsString(test);

System.out.println(s);

我的 pom.xml


<project xmlns="http://maven.apache.org/POM/4.0.0"

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>

    <groupId>Inheritance</groupId>

    <artifactId>Inheritance</artifactId>

    <version>0.0.1-SNAPSHOT</version>


    <build>

        <sourceDirectory>src</sourceDirectory>

        <plugins>

            <plugin>

                <artifactId>maven-compiler-plugin</artifactId>

                <version>3.8.0</version>

                <configuration>

                    <source>1.8</source>

                    <target>1.8</target>

                </configuration>

            </plugin>


        </plugins>

白板的微信
浏览 75回答 1
1回答

30秒到达战场

指定@JsonView的班级级别NestedTest:@JsonView(ConvertView.class)class NestedTest{&nbsp; &nbsp; int n;&nbsp; &nbsp; String s;}对于自定义类,您需要为树中的每个类指定@JsonView您想要使哪些字段对视图可见。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java