
jackson
iteye_10317
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
jackson 1 分钟 向导 POJOs to JSON and back
import com.fasterxml.jackson.databind.ObjectMapper; public class MyValue { public String name; public int age; public String getName() { return name; } public void setName(String name)...2015-02-10 10:27:44 · 119 阅读 · 0 评论 -
jackson maven
com.fasterxml.jackson.core jackson-databind 2.4.4原创 2015-02-10 10:28:48 · 708 阅读 · 0 评论 -
jackjson 三分钟向导 集合处理
https://github.com/FasterXML/jackson-databind/ public class MyValue1 { private String f1; public MyValue1() { super(); } public MyValue1(String f1) { super(); this.f1 = f1; } pu...2015-02-10 15:45:15 · 146 阅读 · 0 评论 -
10 分钟 jackjson 配置
// to enable standard indentation ("pretty-printing"): mapper.enable(SerializationFeature.INDENT_OUTPUT); // to allow serialization of "empty" POJOs (no properties to serialize) // (without this se...2015-02-10 15:50:55 · 495 阅读 · 0 评论 -
10 分钟 jackjson 配置
https://github.com/FasterXML/jackson-databind/ mapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES); ------------------------ public class MyValueBean { private String name; ...原创 2015-02-10 15:52:15 · 366 阅读 · 0 评论 -
jackjson 日前格式
http://www.studytrails.com/java/json/jackson-create-json.jsp import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashMap; import java.util.Map; import com.fasterxml.jac...原创 2015-02-12 09:51:52 · 184 阅读 · 0 评论