前端之家收集整理的这篇文章主要介绍了
jsonconfig详解,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一,setCycleDetectionStrategy 防止自包含
-
- *这里测试如果含有自包含的时候需要CycleDetectionStrategy
- */
- publicstaticvoidtestCycleObject(){
- CycleObjectobject=newCycleObject();
- object.setMemberId("yajuntest");
- object.setSex("male");
- JsonConfigjsonConfig=newJsonConfig();
- jsonConfig.setCycleDetectionStrategy(CycleDetectionStrategy.LENIENT);
- JSONObjectjson=JSONObject.fromObject(object,jsonConfig);
- System.out.println(json);
- }
- voidmain(String[]args){
- JsonTest.testCycleObject();
- }
其中 CycleObject.java是我自己写的一个类:
class
CycleObject{
privateStringmemberId;
privateStringsex;
privateCycleObjectme=this;
……
输出 {"sex":"male","memberId":"yajuntest","me":null}
二,setExcludes:排除需要序列化成json的属性
void
testExcludeProperites(){
Stringstr="{'string':'JSON','integer':1,'double':2.0,'boolean':true}";
jsonConfig.setExcludes(newString[]{"double","boolean"});
JSONObjectjsonObject=(JSONObject)JSONSerializer.toJSON(str,255); background-color:inherit">System.out.println(jsonObject.getString("string"));
System.out.println(jsonObject.getInt("integer"));
System.out.println(jsonObject.has("double"));
"boolean"));
JsonTest.testExcludeProperites();
三,setIgnoreDefaultExcludes
@SuppressWarnings("unchecked")
voidtestMap(){
Mapmap=newHashMap();
map.put("name",0); background-color:inherit">"json");
"class",0); background-color:inherit">"ddd");
JsonConfigconfig=config.setIgnoreDefaultExcludes(true);
JSONObjectjsonObject=JSONObject.fromObject(map,config);
System.out.println(jsonObject);
上面的代码会把name 和 class都输出。
而去掉setIgnoreDefaultExcludes(true)的话,就只会输出name,不会输出class。
private
finalString[]DEFAULT_EXCLUDES="declaringClass",
"MetaClass"};
四,registerJsonBeanProcessor 当value类型是从java的一个bean转化过来的时候,可以提供自定义处理器
"date"
,newDate());
false);
config.registerJsonBeanProcessor(Date.class,0); background-color:inherit; font-weight:bold">newJsDateJsonBeanProcessor());
注:JsDateJsonBeanProcessor 是json-lib已经提供的类,我们也可以实现自己的JsonBeanProcessor。
五,registerJsonValueProcessor
六,registerDefaultValueProcessor
为了演示,首先我自己实现了两个Processor
一个针对Integer
class
MyDefaultIntegerValueProcessorimplementsDefaultValueProcessor{
publicObjectgetDefaultValue(Classtype){
if(type!=null&&Integer.class.isAssignableFrom(type)){
returnInteger.valueOf(9999);
returnJSONNull.getInstance();
一个针对PlainObject(我自定义的类)
class
MyPlainObjectProcessornull&&PlainObject.return"美女"+"瑶瑶";
以上两个类用于处理当value为null的时候该如何输出。
还准备了两个普通的自定义bean
PlainObjectHolder:
class
PlainObjectHolder{
privatePlainObjectobject;
privateIntegera;
publicPlainObjectgetObject(){
returnobject;
voidsetObject(PlainObjectobject){
this.object=object;
publicIntegergetA(){
returna;
voidsetA(Integera){
this.a=a;
PlainObject也是我自己定义的类
class
PlainObject{
publicStringgetMemberId(){
returnmemberId;
voidsetMemberId(StringmemberId){
this.memberId=memberId;
publicStringgetSex(){
returnsex;
voidsetSex(Stringsex){
this.sex=sex;
A,如果JSONObject.fromObject(null) 这个参数直接传null进去,json-lib会怎么处理:
staticJSONObjectfromObject(Objectobject,JsonConfigjsonConfig){
if(object==null||JSONUtils.isNull(object)){
returnnewJSONObject(true);
看代码是直接返回了一个空的JSONObject,没有用到任何默认值输出。
B,其次,我们看如果java对象直接是一个JDK中已经有的类(什么指Enum,Annotation,JSONObject,DynaBean,JSONTokener,JSONString,Map,String,Number,Array),但是值为null ,json-lib如何处理
JSONObject.java
}elseif(objectinstanceofEnum){
thrownewJSONException("'object'isanEnum.UseJSONArrayinstead");
}instanceofAnnotation||(object!=null&&object.getClass()
.isAnnotation())){
"'object'isanAnnotation.");
instanceofJSONObject){
return_fromJSONObject((JSONObject)object,jsonConfig);
instanceofDynaBean){
return_fromDynaBean((DynaBean)object,0); background-color:inherit; font-weight:bold">instanceofJSONTokener){
return_fromJSONTokener((JSONTokener)object,0); background-color:inherit; font-weight:bold">instanceofJSONString){
return_fromJSONString((JSONString)object,0); background-color:inherit; font-weight:bold">instanceofMap){
return_fromMap((Map)object,0); background-color:inherit; font-weight:bold">instanceofString){
return_fromString((String)object,0); background-color:inherit; font-weight:bold">if(JSONUtils.isNumber(object)||JSONUtils.isBoolean(object)
||JSONUtils.isString(object)){
newJSONObject();
if(JSONUtils.isArray(object)){
"'object'isanarray.UseJSONArrayinstead");
else{
根据以上代码,主要发现_fromMap是不支持使用DefaultValueProcessor 的。
原因看代码:
if(value!=null){
JsonValueProcessorjsonValueProcessor=jsonConfig.findJsonValueProcessor(
value.getClass(),key);
if(jsonValueProcessor!=null){
value=jsonValueProcessor.processObjectValue(key,value,0); background-color:inherit; font-weight:bold">if(!JsonVerifier.isValidJsonValue(value)){
"ValueisnotavalidJSONvalue."+value);
setValue(jsonObject,key,value.getClass(),jsonConfig);
voidsetValue(JSONObjectjsonObject,Stringkey,Objectvalue,Classtype,255); background-color:inherit">JsonConfigjsonConfig){
booleanaccumulated=false;
if(value==//当value为空的时候使用DefaultValueProcessor
value=jsonConfig.findDefaultValueProcessor(type)
.getDefaultValue(type);
……
根据我的注释,上面的代码显然是存在矛盾。
_fromDynaBean是支持DefaultValueProcessor的和下面的C是一样的。
C,我们看如果 java 对象是自定义类型的,并且里面的属性包含空值(没赋值,默认是null)也就是上面B还没贴出来的最后一个else
else{return_fromBean(object,jsonConfig);}
我写了个测试类:
void
testDefaultValueProcessor(){
PlainObjectHolderholder=newPlainObjectHolder();
config.registerDefaultValueProcessor(PlainObject.newMyPlainObjectProcessor());
config.registerDefaultValueProcessor(Integer.newMyDefaultIntegerValueProcessor());
JSONObjectjson=JSONObject.fromObject(holder,43); font-family:Arial; font-size:14.44444465637207px; line-height:25.98958396911621px"> 这种情况的输出值是 {"a":9999,"object":"美女瑶瑶"}
即两个Processor都起作用了。
========================== Json To Java ===============
一,ignoreDefaultExcludes
void
json2java(){
StringjsonString="{'name':'hello','class':'ddd'}";
//与JAVAToJson的时候一样,不设置class属性无法输出
JSONObjectjson=(JSONObject)JSONSerializer.toJSON(jsonString,43); font-family:Arial; font-size:14.44444465637207px; line-height:25.98958396911621px"> ========================== JSON 输出的安全问题 ===============
我们做程序的时候主要是使用 Java To Json的方式,下面描述的是 安全性问题:
voidtestSecurity(){
"/"}<IMGsrc='x.jpg'onerror=javascript:alert('说了你不要进来')border=0>{",0); background-color:inherit">"");
JSONObjectjsonObject=JSONObject.fromObject(map);
}
JsonTest.testSecurity();
输出的内容:
{"/"}<IMG src='x.jpg' onerror=javascript:alert('说了你不要进来') border=0> {":""} |
如果把这段内容直接贴到记事本里面,命名为 testSecu.html ,然后用浏览器打开发现执行了其中的 js脚本。这样就容易产生XSS安全问题。
原文链接:https://www.f2er.com/json/290400.html