91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot與Postman怎么實現REST模擬請求

發布時間:2021-06-21 15:46:48 來源:億速云 閱讀:295 作者:chen 欄目:開發技術

本篇內容介紹了“SpringBoot與Postman怎么實現REST模擬請求”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

前言

Postman是一款Http請求模擬工具.它可以模擬各種Http Request,使用起來十分的方便.

使用背景

利用Spring Boot 快速搭建一個Web應用,利用相同的url,不同的請求方式來調用不同的方法.最后利用Postman工具模擬實現.

實現方法

利用IDEA快速構建應用環境

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-jpa</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

配置SpringBoot文件application.yml

server:
  port: 8080
  servlet:
    context-path: /girl
spring:
  datasource:
    url: jdbc:mysql://127.0.0.1:3306/test
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: 1234
  jpa:
    hibernate:
      ddl-auto: update
    show-sql: true

Controller代碼

@RestController
public class MyController {
    @Autowired
    UserDao userDao;
    @RequestMapping(value = "/say/{name}")
    public @ResponseBody User say(@PathVariable("name") String uname){
        User user = new User();
        user.setUname(uname);
        return  userDao.save(user);
    }
    @GetMapping("/a")
    public List<User> geyUserList(){
        return userDao.findAll();
    }
    @PostMapping("/a")
    public User addUser(@RequestParam("uname") String uname){
       User user = new User();
       user.setUname(uname);
       return userDao.save(user);
    }
    @PutMapping(value = "/a/{no}")
    public User updateUser(@PathVariable("no") Integer uno,@RequestParam("uname") String uname){
       User user = new User();
       user.setUno(uno);
       user.setUname(uname);
       return userDao.save(user);
    }
    @DeleteMapping(value = "/a/{no}")
    public void deleteUser(@PathVariable("no") Integer uno){
        userDao.deleteById(uno);
    }
}

其中需要說明的幾個注解:

GetMapping/PostMapping/PutMapping/DeleteMapping都是組合注解.

學習過SpringMVC的同學都知道用RequestMapping注解來進行映射請求.

而以上四個注解就是基于Http的REST風格的請求+RequestMapping的結合.

分別代表REST風格的CRUD操作.

使用Postman

下載方式:chrome商店搜索Postman即可.(有問題可以來私信我)

如下圖所示,Postman界面為我們提供了多種請求方式

SpringBoot與Postman怎么實現REST模擬請求

舉個栗子

利用Put請求使用更新操作

SpringBoot與Postman怎么實現REST模擬請求

首先選擇請求方式為Put,在Body標簽下填寫要傳入的參數,需要注意的是Put請求與其他三種請求方式不一樣,要選擇x-www-form-urlencoded方式提交,而不是form-data.

spring-boot postman post請求遇到的坑

今天用postman調試接口,發現post請求進不去,一直報錯

SpringBoot與Postman怎么實現REST模擬請求

get請求是可以的,我就納悶了,難道是我寫接口的姿勢不對?

后來逐步分析問題,發現問題出在了請求頭Header的Content-Type上,

application/x-www-form-urlencoded這個類型,就報錯,

必須要改成application/json,

網上查下資料,大概懂了,

后臺請求用@RequestBody的話,Content-Type就要設置為application/json,如果用@RequestParam的話,application/x-www-form-urlencoded這個格式也是可以的,就是前端數據以form方式提交

即application/x-www-form-urlencoded的時候傳參方式如下

SpringBoot與Postman怎么實現REST模擬請求

SpringBoot與Postman怎么實現REST模擬請求

application/json的時候,傳參方式就是正常的json格式

SpringBoot與Postman怎么實現REST模擬請求

SpringBoot與Postman怎么實現REST模擬請求

“SpringBoot與Postman怎么實現REST模擬請求”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荔波县| 顺平县| 泰州市| 清河县| 宁乡县| 凤凰县| 孙吴县| 建昌县| 黑山县| 尼玛县| 新巴尔虎左旗| 麻江县| 横峰县| 石河子市| 温州市| 安康市| 宁国市| 洛南县| 苗栗县| 忻州市| 左云县| 休宁县| 武乡县| 读书| 武陟县| 利辛县| 讷河市| 郓城县| 含山县| 肥西县| 麦盖提县| 黄大仙区| 新丰县| 浦东新区| 称多县| 改则县| 桃江县| 南宫市| 云龙县| 南京市| 马关县|