我有一个Java类(MyResponse),它由多个RestController方法返回,并且有很多字段.
@RequestMapping(value = "offering",method=RequestMethod.POST)
public ResponseEntity
我不想忽略该类的空字段,因为它可能对其他字段有副作用.
@JsonInclude(Include.NON_NULL)
public class MyResponse { ... }
JsonView看起来不错,但据我所知,我必须使用@JsonView注释类中的所有其他字段,除了我想忽略的那些听起来很笨拙的字段.如果有办法做“反向JsonView”这样的话会很棒.
最佳答案
道具到this家伙.
原文链接:https://www.f2er.com/spring/432003.html默认情况下(在Spring Boot中)在Jackson中启用了MapperFeature.DEFAULT_VIEW_INCLUSION.这意味着默认情况下包含所有字段.
但是,如果您使用与控制器方法上的视图不同的视图注释任何字段,则此字段将被忽略.
public class View {
public interface Default{}
public interface Ignore{}
}
@JsonView(View.Default.class) //this method will ignore fields that are not annotated with View.Default
@RequestMapping(value = "offering",method=RequestMethod.POST)
public ResponseEntity