首页 > 学院 > 开发设计 > 正文

restful

2019-11-08 00:24:07
字体:
来源:转载
供稿:网友
1.restful web service 应用不广泛,优点编码渐变、面向资源。2.对url 进行规范,写RESTful格式的url:  REST的url风格:http://...../querytems.action?id=001&type=T01;  rest的url风格:http://..../items/001特点:url简洁,将参数通过url传到服务端;2.http的方法规范  不管是删除、添加、更新。使用url是一致的,如果进行删除,  需要设置http的方法为delete,同理添加....。  后台controller方法,判断http方法,如果是delete执行删除,如果是post执行添加。
 @RequestMapping("/get/{invoiceId}")    @ResponseBody    public MobStockIn get(@PathVariable("invoiceId") String invoiceId){    	return mobStockInService.get(invoiceId);    }
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表