Skip to content

Instantly share code, notes, and snippets.

@shoooone
shoooone / file0.txt
Last active February 4, 2019 05:29
JacksonのPropertyNamingStrategyまとめ ref: https://qiita.com/Shoone/items/5d23dfcc8687ba2305fe
@SneakyThrows
public static void main(String[] args) {
ObjectMapper mapper = new ObjectMapper();
print("PropertyNamingStrategy", mapper.writeValueAsString(new CamelCase()));
print("UpperCamelCaseStrategy", mapper.writeValueAsString(new PascalCase()));
print("SnakeCaseStrategy", mapper.writeValueAsString(new SnakeCase()));
print("KebabCaseStrategy", mapper.writeValueAsString(new KebabCase()));
print("LowerCaseStrategy", mapper.writeValueAsString(new LowerCase()));
}