工作日常总结
程序员文章站
2022-05-18 08:04:22
...
判断不能传入空
使用@NotBlank注解
@NotBlank
private String systemName;
传入的字符串为空格使用
if(StringUtils.isBlank(createDTO.getRightsSrcId())){
传入null,空格也会被过滤
}
链式赋值
Entity existEntity = new Entity()
.setId(Id)
.setd(tenantId)
.setCreateTime(LocalDateTime.now());
DTO和entity赋值
BeanUtil.copyProperties(DTO, existEntity);
左边为source,右边为target;
guava的list
List<OpenRightsQueryWithSystemName> entitys = Lists.newArrayList();
lambada 格式的foreach->
entitys.forEach(entity->{
system.out.print("entity相当于entitys.get(i)");
})
普通的for循环
for(inti=0;i<entitys.size();i++){
system.out.print(entitys.get(i));
}
上一篇: vk11写入ZWX2的价格
下一篇: 如何重置sysman的口令