美文网首页
Jackson 的 DeserializationFeature

Jackson 的 DeserializationFeature

作者: HoneyMoose | 来源:发表于2023-02-03 06:41 被阅读0次

    API 文档中的说法就是:

    Feature that determines whether encountering of unknown properties (ones that do not map to a property, and there is no “any setter” or handler that can handle it) should result in a failure

    反序列化时遇到未知属性(那些没有对应的属性来映射的属性,并且没有任何setter或handler来处理这样的属性)是否抛出处理失败的异常。

    说明

    简单来说,就是在进行序列化或者反序列化的时候。

    JSON 字符串中有一个字段,但是我们的对象没有这个字段,那么处理器应该做什么的配置。

    默认情况下是抛出异常,如果不想抛出异常只想处理继续进行的话,这个参数要设置为 False。

    https://www.ossez.com/t/jackson-deserializationfeature-fail-on-unknown-properties/14311

    相关文章

      网友评论

          本文标题:Jackson 的 DeserializationFeature

          本文链接:https://www.haomeiwen.com/subject/oznghdtx.html