java restful文件传输_Springboot 实现 Restful 服务,基于 HTTP / JSON 传输

二、springboot-restful 工程控制层实现详解

1.什么是 REST?

REST 是属于 WEB 自身的一种架构风格,是在 HTTP 1.1 规范下实现的。Representational State Transfer 全称翻译为表现层状态转化。Resource:资源。比如 newsfeed;Representational:表现形式,比如用JSON,富文本等;State Transfer:状态变化。通过HTTP 动作实现。

理解 REST ,要明白五个关键要素:

资源(Resource)

资源的表述(Representation)

状态转移(State Transfer)

统一接口(Uniform Interface)

超文本驱动(Hypertext Driven)

6 个主要特性:

面向资源(Resource Oriented)

可寻址(Addressability)

连通性(Connectedness)

无状态(Statelessness)

统一接口(Uniform Interface)

超文本驱动(Hypertext Driven)

2.Spring 对 REST 支持实现

CityRestController.java 城市 Controller 实现 Restful HTTP 服务

public class CityRestController {

@Autowired

private CityService cityService;

@RequestMapping(value = "/api/city/{id}", method = RequestMethod.GET)

public City findOneCity(@PathVariable("id") Long id) {

return cityService.findCityById(id);

}

@RequestMapping(value = "/api/city", method = RequestMethod.GET)

public List findAllCity() {

return cityService.findAllCity();

}

@RequestMapping(value = "/api/city", method = RequestMethod.POST)

public void createCity(@RequestBody City city) {

cityService.saveCity(city);

}

@RequestMapping(value = "/api/city", method = RequestMethod.PUT)

public void modifyCity(@RequestBody City city) {

cityService.updateCity(city);

}

@RequestMapping(value = "/api/city/{id}", method = RequestMethod.DELETE)

public void modifyCity(@PathVariable("id") Long id) {

cityService.deleteCity(id);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值