resful是什么 rest是一种开发的风格,他不是框架,也没有类库,是一种约定 有什么不同 非restful的开发方式 当没有接触restful的时候,URL通常是动词,比如127.0.0.1:8080/unrestful/getFile restful的开发方式 restful的URL是名词,比如127.0.0.1:8080/restful/file 通过请求消息的method来调用具体的业务 约定的method get,获取数据 post,新增数据 put,更新数据 delete,删除数据…