Java 常用工具
花门楼前见秋草,岂能贫贱相看老。
Java 常用工具类
Hutools
Guava
引入
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>21.0</version>
</dependency>
驼峰命名
import org.junit.Test;
import com.google.common.base.CaseFormat;
public class GuavaTester {
@Test
public void test() {
System.out.println(CaseFormat.LOWER_HYPHEN.to(CaseFormat.LOWER_CAMEL, "test-data"));//testData
System.out.println(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "test_data"));//testData
System.out.println(CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "test_data"));//TestData
System.out.println(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, "testdata"));//testdata
System.out.println(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_UNDERSCORE, "TestData"));//test_data
System.out.println(CaseFormat.LOWER_CAMEL.to(CaseFormat.LOWER_HYPHEN, "testData"));//test-data
}
}
Jackson
@JsonAlias和@JsonProperty
@JsonAlias 这个注解是在JackSon 2.9版本中才有的。 作用是在反序列化的时候可以让Bean的属性接收多个json字段的名称。可以加在字段上或者getter和setter方法上。
public class User {
@JsonAlias({"name","user"})
private String username;
private String password;
private Integer age;
}
Get Set方法省略 { “name” : “小明”, “password” : “123”, age : 15 } 可以从下面看到json字段是name也成功对应到了Bean的username属性
如果不加上面那个注解肯定会报json解析异常错误。 注意:序列化的时候仍然是原始的属性名称,只是在反序列化的时候可以接收多个json字段,如果多个json字段对应了Bean里面的同一个属性,依然会报Json解析异常错误的。
@JsonProperty 这个注解是更改Bean字段的属性名用的。 Access.WRITE_ONLY:只在序列化时使用修改后的字段 Access.READ_ONLY:只在反序列化时使用,类似于@JsonAlias注解 Access.READ_WRITE:在序列化和反序列化都使用修改后字段 Access.AUTO:自动确定,一般是和第三个一样,啥情况不一样我也不清楚,如果不写access,默认就是这个。 value是逻辑属性的名称,如果只有value则省略
@JsonProperty("name")
private String username;
access是更改逻辑属性序列化和反序列化的可见性,
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY)
private String username;
private String password;
private Integer age;
注意这里就是已经修改了序列化和反序列化的json字段的名称,你拿username反序列化的时候已经接收不到这个数据了,只能拿name才可以接收,和@JsonAlias注解还是不同的,他是两个都可以接收。
{ “username” : “小明”, “password” : “123”, “age” : 15 }
版权声明:如无特别声明,本站收集的文章归 HuaJi66/Others 所有。 如有侵权,请联系删除。
联系邮箱: GenshinTimeStamp@outlook.com
本文标题:《 Java 常用工具 》