如果该字段的值为null,Jackson如何配置为在序列化期间忽略字段值.
例如:
public class SomeClass {
// what jackson annotation causes jackson to skip over this value if it is null but will
// serialize it otherwise
private String someValue;
}
Run Code Online (Sandbox Code Playgroud)