摘要:
说明:@JsonPropertyOrder 勇于fastjson 对对象字段实现排序使用 1.@JsonPropertyOrder(value = {"name", "id"}) 明确制定字段排序顺序 name ==》 id 实体类属性 public class WorkingPlace imple 阅读全文
摘要:
1、创建表 CREATE table tb_user ( id serial primary key not null , name varchar(20) not null default '' ) ; comment on column tb_user.id is '主键id'; comment 阅读全文
摘要:
maven打包编译时后台一直输出警告信息 File encoding has not been set, using platform encoding GBK, i.e. build is platform dependent! 解决办法:pom.xml中增加属性即可解决 <properties> 阅读全文