Table of Contents
Question content
Workaround
Home Java JsonNullable objects always have isPresent value = true

JsonNullable objects always have isPresent value = true

Feb 08, 2024 pm 10:42 PM

JsonNullable is a commonly used object in PHP. It always has the characteristic that the isPresent value is true. This means that a JsonNullable object is considered present regardless of whether it is null or not. PHP editor Xinyi will explore the uses and characteristics of the JsonNullable object in the following article, and explain why its isPresent value is always true. By in-depth understanding of the JsonNullable object, we can better understand its application and advantages in PHP development.

Question content

I have a file in json format. It stores json objects that I use in my tests. I used objectmapper to convert this file to objects and it converted fine, but there is a problem. All fields in the object have a wrapper type of jsonnullabel. The problem is as follows - all jsonnullabel objects, even if they contain null attribute value ispresent = true. Therefore, the "orelse" and "ispresent" methods do not work properly. I got npe. How can I ensure that when converting from a string or json file, these fields equal "false" if there are null values ​​inside?

json example:

65bee5661098c

I have tried this configuration for objectmapper: Object mapper configuration:

ObjectMapper objectMapper = new ObjectMapper();
    objectMapper.registerModule(new JavaTimeModule());
    objectMapper.registerModule(new Jdk8Module());
    objectMapper.registerModule(new JsonNullableModule());
    objectMapper.configure(SerializationFeature.WRITE_DATES_AS_TIMESTAMPS, false);
    objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
    objectMapper.configure(MapperFeature.DEFAULT_VIEW_INCLUSION, false);
Copy after login

Workaround

Try using @jsondeserialize jackson annotation on the class member, the annotation can be null in json, and you want the value to be "false" instead of null, like this:

public class MyJsonClass {
    @JsonDeserialize(using = CustomDeserializer.class)
    public String nullableMember;
}

public class CustomDeserializer
  extends StdDeserializer<String> {

    public CustomDeserializer() { 
        this(null); 
    } 

    public CustomDeserializer(Class<?> vc) { 
        super(vc); 
    }

    @Override
    public String deserialize(JsonParser jsonparser, DeserializationContext context) {
        String text = jsonparser.getText();
        if (null == text) {
          text = "false";
        }
        return text;
    }
}
Copy after login

The above is the detailed content of JsonNullable objects always have isPresent value = true. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)