欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JsonConfig

程序员文章站 2022-03-05 23:23:07
...
JsonConfig config = new JsonConfig();   
    	     config.setJsonPropertyFilter(new PropertyFilter() {   
    	         public boolean apply(Object source, String name, Object value) {   
    	             if (name.equals("clubs") || name.equals("city")    //说明一下:name为容易出死循环的属性!
    	                      || name.equals("msg")) {   
    	                 return true;   
    	              } else {   
    	                 return false;   
    	              }   
    	          }   
         });  

 haibernate查询结果转json 出现异常解决

 

相关标签: json