1、 lombok下的
@SneakyThrows
当有try catch 时可以在方法上加上,就不用可读性很差的try catch
@Accessors
@Accessors(chain = true)
添加在类上面 可以在对象后面一直set 对象.setB("").setA("")
这样审的
fiClient.setClientId("").setClientNo("");
@Accessors(fluent = true)
可以对象的set get方法没有set get 反正我不用 用不习惯
User user = new User();
String password = user.password();
// 他等于 user.getPassword();
@AllArgsConstructor
全局构造啊 就不说了这个
@NoArgsConstructor
无惨构造
2、常用的啊 乱七八糟的
@DateTimeFormat(pattern = “yyyy-MM-dd”)
前台向后台传日期的接收模型
@JsonFormat(pattern = “yyyy-MM-dd”)
后端返回前端日期的模型
@DateTimeFormat(pattern = "yyyy-MM-dd")
@JsonFormat(pattern = "yyyy-MM-dd")
private Date createTime;
@JsonInclude(JsonInclude.Include.NON_NULL)
如果数据为null的话 就不返回给前端了