今天学了一下.net的WCF组件,边心血来潮,想着现在不都是前后分离,调接口开发不,于是赶紧写了一简单的后台数据,哈哈 废话不多说,直接上代码: 注意需要导入库! 实体类:Customer using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace domain { public class Cust…
需要引用程序集: System.Net.Http System.Web System.Web.Extensions Code: using System; using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Text; using System.Web; using System.Web.Script.Serialization; namespace Common.Uti…
近期做项目的时候,发现使用net.sf.json包中的JSONObject或JSONArray将对象转为json数据结构存在一个坑.当对String类型的属性赋值为null情况下,转为json结构为"",但前端需要为null.而包com.fasterxml.jackson可以将原来null转为json中的null.特记录于此,举例说明如下: User实体: public class User { String name; Integer age; public User() { sup…