@Valid排除某些字段
时间: 2023-11-14 20:07:47 浏览: 118
可以使用 Spring Boot 中的 @JsonIgnoreProperties 注解来排除某些字段,该注解可以放在类上或属性上,用于指定在序列化或反序列化时需要忽略的属性。
例如,在一个 User 类中,如果我们想要在序列化时忽略 password 字段,可以这样写:
```
@JsonIgnoreProperties(value = {"password"})
public class User {
private String username;
private String password;
// getters and setters
}
```
这样在序列化时,password 字段就会被忽略掉。
阅读全文