1. 程式人生 > >Spring全家桶–SpringBoot Rest API

Spring全家桶–SpringBoot Rest API

  Spring Boot通過提供開箱即用的預設依賴或者轉換來補充Spring REST支援。在Spring Boot中編寫RESTful服務與SpringMVC沒有什麼不同。總而言之,基於Spring Boot的REST服務與基於Spring的REST服務完全相同,只是在我們引導底層應用程式的方式上有所不同。
  
  1.REST簡短介紹
  
  REST代表Representational State Transfer. 是一種架構風格,設計風格而不是標準,可用於設計Web服務,可以從各種客戶端使用.
  
  基於REST的基本設計,其是根據一組動詞來控制的操作
  
  建立操作:應使用HTTP POST
  
  查詢操作:應使用HTTP GET
  
  更新操作:應使用HTTP PUT
  
  刪除操作:應使用HTTP DELETE
  
  作為REST服務開發人員或客戶端,您應該遵守上述標準。
  
  2.準備工作
  
  專案的環境工具
  
  SpringBoot 2.0.1.RELEASE
  
  Gradle 4.7
  
  IDEA 2018.2
  
  MySQL5.7
  
  專案結構圖
  
  3.開始
  
  下面基於一種方式講解Restful
  
  複製程式碼
  
  package com.example.controller;
  
  import com.example.beans.PageResultBean;
  
  import com.example.beans.ResultBean;
  
  import com.example.entity.User;
  
  import com.example.service.UserService;
  
  import org.springframework.beans.factory.annotation.Autowired;
  
  import org.springframework.web.bind.annotation.PathVariable;
  
  import org.springframework.web.bind.annotation.RequestMapping;
  
  import org.springframework.web.bind.annotation.RequestMethod;
  
  import org.springframework.web.bind.annotation.RestController;
  
  import java.util.List;
  
  @RestController
  
  @RequestMapping("/user")
  
  public class UserControllerAPI {
  
  private final UserService userService;
  
  @Autowired
  
  public UserControllerAPI(UserService userService) {
  
  this.userService = userService;
  
  }
  
  @RequestMapping(value = "/api", method = RequestMethod.GET)
  
  public PageResultBean<List<User>> getUserAll(PageResultBean page) {
  
  return new PageResultBean<>(userService.getUserAll(page.getPageNo(), page.getPageSize()));
  
  }
  
  @RequestMapping(value = "/api/{id}", method = RequestMethod.GET)
  
  public ResultBean<User> getUserByPrimaryKey(@PathVariable("id") Integer id) {
  
  return new ResultBean<>(userService.selectByPrimaryKey(id));
  
  }
  
  @RequestMapping(value = "/api/{id}", method = RequestMethod.PUT)
  
  public ResultBean<Integer> updateUserByPrimaryKey(@PathVariable("id") Integer id,User user) {
  
  user.setId(id);
  
  return new ResultBean<>(userService.updateByPrimaryKeySelective(user));
  
  }
  
  @RequestMapping(value = "/api/{id}", method = RequestMethod.DELETE)
  
  public ResultBean<String> deletePrimaryKey(@PathVariable("id") Integer id) {
  
  return new ResultBean<>(userService.deleteByPrimaryKey(id));
  
  }
  
  @RequestMapping(value = www.mingcheng178.com"/api", method = RequestMethod.POST)
  
  public ResultBean<Integer>www.huarenyl.cn deletePrimaryKey(User user) {
  
  return new ResultBean<>(userService.insertSelective(user));
  
  }
  
  }
  
  複製程式碼
  
  對於/user/api HTTP GET來請求獲取全部使用者
  
  對於/user/api HTTP POST來建立使用者
  
  對於/user/api/1 HTTP GET請求來獲取id為1的使用者
  
  對於/user/api/1 HTTP PUT請求來更新
  
  對於/user/api/1 HTTP DELETE請求來刪除id為1的使用者
  
  HTTP GET請求/user/api 查詢全部
  
  URL:http://localhost:8080/user/api
  
  Spring全家桶--SpringBoot Rest API
  
  HTTP GET請求/user/api/65 跟據id查詢
  
  URL:http://localhost:8080/user/api/65
  
  Spring全家桶--SpringBoot Rest API
  
  HTTP POST請求/user/api 建立使用者
  
  URL:http://localhost:8080/user/api
  
  Spring全家桶--SpringBoot Rest API
  
  HTTP PUT請求/user/api/65 來更新使用者資訊
  
  URL:http://localhost:8080/user/api/65
  
  Spring全家桶--SpringBoot Rest API
  
  HTTP DELETE請求/user/api/85 來刪除id為85的使用者
  
  URL:http://localhost:8080/user/api/85
  
  Spring全家桶--SpringBoot Rest API
  
  4.業務層及dao層程式碼
  
  UserService.java 介面
  
  複製程式碼
  
  package com.example.service;
  
  import com.example.entity.User;
  
  import java.util.List;
  
  public interface UserService {
  
  /**
  
  * 刪除
  
  * @param id
  
  * @return
  
  */
  
  String deleteByPrimaryKey(Integer id);
  
  /**
  
  * 建立
  
  * @param record
  
  * @return
  
  */
  
  int insertSelective(www.365soke.com/ User record);
  
  /**
  
  * 單個查詢
  
  * @param id
  
  * @return
  
  */
  
  User selectByPrimaryKey(Integer id);
  
  /**
  
  * 更新
  
  * @param record
  
  * @return
  
  */
  
  int updateByPrimaryKeySelective(User record);
  
  /**
  
  * 查詢全部
  
  * @return
  
  */
  
  List<User> getUserAll(Integer pageNum, Integer pageSize);
  
  }
  
  複製程式碼
  
  UserServiceImpl.java
  
  複製程式碼
  
  package com.example.service.impl;
  
  import com.example.dao.UserMapper;
  
  import com.example.entity.User;
  
  import com.example.service.UserService;
  
  import com.github.pagehelper.PageHelper;
  
  import org.slf4j.Logger;
  
  import org.slf4j.LoggerFactory;
  
  import org.springframework.beans.factory.annotation.Autowired;
  
  import org.springframework.stereotype.Service;
  
  import org.springframework.transaction.annotation.Transactional;
  
  import java.util.List;
  
  @Service
  
  public class UserServiceImpl implements UserService {
  
  private final static Logger logger = LoggerFactory.getLogger(UserServiceImpl.class);
  
  private final UserMapper www.michenggw.com/ userMapper;
  
  @Autowired(required =www.mcyllpt.com false)
  
  public UserServiceImpl(UserMapper userMapper) {
  
  this.userMapper =www.mhylpt.com userMapper;
  
  }
  
  /**
  
  * 刪除
  
  *
  
  * @param id
  
  * @return
  
  */
  
  @Transactional
  
  @Override
  
  public String deleteByPrimaryKey(Integer id) {
  
  logger.info("UserServiceImpl deleteByPrimaryKey id => " + id);
  
  User user = userMapper.selectByPrimaryKey(id);
  
  String result;
  
  if (user =www.gcyL157.com= null) {
  
  result = "使用者ID[" + id + "]找不到!";
  
  } else {
  
  result = String.valueOf(userMapper.deleteByPrimaryKey(id));
  
  }
  
  return result;
  
  }
  
  /**
  
  * 建立
  
  *
  
  * @param record
  
  * @return
  
  */
  
  @Transactional
  
  @Override
  
  public int insertSelective(User record) {
  
  logger.info("UserServiceImpl insertSelective record=>"+record.toString());
  
  return userMapper.insertSelective(record);
  
  }
  
  /**
  
  * 單個查詢
  
  *
  
  * @param id
  
  * @return
  
  */
  
  @Override
  
  public User selectByPrimaryKey(Integer id) {
  
  logger.info("UserServiceImpl selectByPrimaryKey id=>"+id);
  
  return userMapper.selectByPrimaryKey(id);
  
  }
  
  /**
  
  * 更新
  
  *
  
  * @param record
  
  * @return
  
  */
  
  @Override
  
  public int updateByPrimaryKeySelective(User record) {
  
  logger.info("UserServiceImpl updateByPrimaryKeySelective record=>"+record.toString());
  
  return userMapper.updateByPrimaryKeySelective(record);
  
  }
  
  /**
  
  * 查詢全部
  
  *
  
  * @param pageNum
  
  * @param pageSize
  
  * @return
  
  */
  
  @Override
  
  public List<User> getUserAll(Integer pageNum, Integer pageSize) {
  
  logger.info("UserServiceImpl getUserAll pageNum=>"+pageNum+"=>pageSize=>"+pageSize);
  
  PageHelper.startPage(pageNum,pageSize);
  
  List<User> userList = userMapper.getUserAll();
  
  logger.info("UserServiceImpl getUserAll userList"+userList.size());
  
  return userList;
  
  }
  
  }
  
  複製程式碼
  
  UserMapper.java
  
  複製程式碼
  
  package com.example.dao;
  
  import com.example.entity.User;
  
  import java.util.List;
  
  public interface UserMapper {
  
  int deleteByPrimaryKey(Integer id);
  
  int insert(User record);
  
  int insertSelective(User record);
  
  User selectByPrimaryKey(Integer id);
  
  int updateByPrimaryKeySelective(User record);
  
  int updateByPrimaryKey(User record);
  
  List<User> getUserAll();
  
  }
  
  複製程式碼
  
  PageResultBean和ResultBean的程式碼在GitHub
  
  https://github.com/cuifuan/springboot-demo
  
  實體層和mapper.xml程式碼都是可以自動生成的,教程導航:
  
  Spring全家桶系列--SpringBoot與Mybatis結合
  
  4.理解RESTful
  
  通過上面的編碼,如果你已經走通了上面的程式碼,相信你已經對REST有了大致的掌握,時今當下的前端Client層出不窮,後端介面或許來自不同平臺,這時候需要請求一批介面,而RESTful風格的api,使人從請求方式和地址一看就知道是要做什麼操作,根據返回code狀態就知道結果如何
  
  使用RESTful直接帶來的便利:
  
  之前的介面
  
  刪除 /user/delete
  
  新增 /user/create
  
  單個查詢 /user/queryById
  
  查詢全部 /user/queryAll
  
  更新 /user/update
  
  採用RESTful設計API之後 /user/api一個URL地址解決,再也不用跟前端廢舌頭了,同時GET請求是冪等的,什麼是冪等?簡單通俗的說就是多次請求返回的效果都是相同的,例如GET去請求一個資源,無論請求多少次,都不會對資料造成建立修改等操作,PUT用來更新資料也是,無論執行多次的都是最終一樣的效果
  
  問題:使用PUT改變學生年齡並且這樣做10次和做了一次,學生的年齡是相同的,是冪等的,那麼如果POST做相同操作,那麼它是如何不是冪等的?
  
  答:因為POST請求會在服務端建立與請求次數相同的服務,假如服務端每次請求服務會存在一個金鑰,那麼這個POST請求就可能不是冪等的,也或許是冪等的,所以POST不是冪等的。
  
  因為PUT請求URL到客戶端定義的URL處完整地建立或替換資源,所以PUT是冪等的。 DELETE請求也是冪等的,用來刪除操作,其實REST就是相當於一個風格規範。
  
  注意了,GET請求請不要用在delete操作上,你要問我為啥不行,你偏要那麼做,其實,整個CRUD操作你也都可以用GET來完成,哈哈,這個只是一個開發的設計風格。