Springboot实现Restful服务,基于HTTP或JSON 传输.md


  1. 运行 springboot-restful 工程
    1. 数据库准备:
CREATE DATABASE springbootdb;

DROP TABLE IF EXISTS  `city`;
CREATE TABLE `city` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '城市编号',
  `province_id` int(10) unsigned  NOT NULL COMMENT '省份编号',
  `city_name` varchar(25) DEFAULT NULL COMMENT '城市名称',
  `description` varchar(25) DEFAULT NULL COMMENT '描述',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

INSERT city VALUES (1 ,1,'温岭市','BYSocket 的家在温岭。');
    1. springboot-restful 工程项目结构介绍:
org.spring.springboot.controller - Controller 层
org.spring.springboot.dao - 数据操作层 DAO
org.spring.springboot.domain - 实体类
org.spring.springboot.service - 业务逻辑层
Application - 应用启动类
application.properties - 应用配置文件,应用启动会自动读取配置
    1. 修改数据库配置:
  • 打开 application.properties 文件, 修改相应的数据源配置,比如数据源地址、账号、密码等。(如果不是用 MySQL,自行添加连接驱动 pom,然后修改驱动名配置。)
## 数据源配置
spring.datasource.url=jdbc:mysql://localhost:3306/springbootdb?useUnicode=true&characterEncoding=utf8
spring.datasource.username=root
spring.datasource.password=980414
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
    1. 运行Application应用启动类
  1. springboot-restful 工程控制层实现详解
    1. 什么是REST?
REST 是属于 WEB 自身的一种架构风格,是在HTTP1.1规范下实现的。Representational State Transfer 全称翻译为表现层状态转化。
- Resource:资源。比如 newsfeed;
- Representational:表现形式,比如用JSON,富文本等;
- State Transfer:状态变化。
通过HTTP 动作实现。
五个关键要素:
资源(Resource)
资源的表述(Representation)
状态转移(State Transfer)
统一接口(Uniform Interface)
超文本驱动(Hypertext Driven)

六个主要特性:
面向资源(Resource Oriented)
可寻址(Addressability)
连通性(Connectedness)
无状态(Statelessness)
统一接口(Uniform Interface)
超文本驱动(Hypertext Driven)
    1. Spring 对 REST 支持实现
CityRestController.java实现 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<City> 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);
    }
}

上面代码中的注解解释:
- @RequestMapping 处理请求地址映射
> > method - 指定请求的方法类型:POST/GET/DELETE/PUT 等
> > value - 指定实际的请求地址
> > consumes - 指定处理请求的提交内容类型,例如 Content-Type 头部设置application/json, text/html
> > produces - 指定返回的内容类型

@PathVariable URL 映射时,用于绑定请求参数到方法参数
@RequestBody 这里注解用于读取请求体body的数据,通过HttpMessageConverter 解析绑定到对象中
    1. HTTP知识补充
GET         请求获取Request-URI所标识的资源
POST        在Request-URI所标识的资源后附加新的数据
HEAD        请求获取由Request-URI所标识的资源的响应消息报头
PUT         请求服务器存储一个资源,并用Request-URI作为其标识
DELETE      请求服务器删除Request-URI所标识的资源
TRACE       请求服务器回送收到的请求信息,主要用于测试或诊断
CONNECT     保留将来使用
OPTIONS     请求查询服务器的性能,或者查询与资源相关的选项和需求

参考:https://www.bysocket.com/?page_id=1639

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值