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

将类的对象转换成JSON返回

程序员文章站 2022-05-24 10:53:30
...

直接上代码

// 调用接口方法
ApiResp resp = service.action(from);
// 没有数据输出空
resp = resp == null ? new ApiResp(from) : resp;
		
// 调试日志
if (ApiUtils.DEBUG) {
	log.info("API DEBUG ACTION \n[from=" + from + "]" //
		+ "\n[resp=" + JsonKit.toJson(resp) + "]" //
		+ "\n[time=" + (System.currentTimeMillis() - start) + "ms]");
}	
renderJson("001,1002"+JsonKit.toJson(resp));

import:

import com.jfinal.kit.JsonKit;