后端小技巧--tips
1.枚举使用
public enum TypeEnum {original(0, "对话"),//
reply(1, "交谈"),//
;
private String description;
private int type;
private static Map statusMap;
static {
statusMap = new HashMap();
for (TypeEnum type : TypeEnum.values()) {
statusMap.put(type.getType(), type);
}
}public staticTypeEnum getTypeEnum(int type) {
return statusMap.get(type);
}private TypeEnum(int type, String description) {
this.type = type;
this.description = description;
}public String getDescription() {
return description;
}public int getType() {
return type;
}
}
【后端小技巧--tips】2.序列化 Jackson
@JsonView 简单介绍
通过添加@jsonView 注解指定输出对象
objectMapper.writerWithView(User.WithoutPasswordView.class).writeValue(bos, user);
推荐阅读
- 一个小故事,我的思考。
- 家乡的那条小河
- 一个人的碎碎念
- 野营记-第五章|野营记-第五章 讨伐梦魇兽
- 昨夜小楼听风
- 2021-02-17|2021-02-17 小儿按摩膻中穴-舒缓咳嗽
- 【译】20个更有效地使用谷歌搜索的技巧
- 基于微信小程序带后端ssm接口小区物业管理平台设计
- 2019.4.18感恩日记
- 那件我们忽略的小事叫感恩