摘要:
create VIEW view_comment as (select w.idStr,w.content,w.userID,w.wei_id,w.createTime,'01' as type FROM wei_comment_comment w)UNION ALL(select r.idStr... 阅读全文
摘要:
在使用JSONObject.fromObject的时候,出现“There is a cycle in the hierarchy”异常。意思是出现了死循环,也就是Model之间有循环包含关系;解决办法:使用setCycleDetectionStrategy防止自包含代码:JsonConfig jso... 阅读全文