当前位置:网站首页>Request and response
Request and response
2022-07-02 23:30:00 【pengege666】
List of articles
Request mapping path
Team multiplayer development , Each person sets a different request path , How to solve the conflict — Set the module name as the request path prefix 

Use postman The software sends a request 
Request parameters
General parameter
Send with parameters Get request

Experimental operation
@Controller
@RequestMapping("/User")
public class UserController {
//2.2 Set the access path of the current operation
@RequestMapping("/save")
@ResponseBody
public String save(String name){
System.out.println(name);
System.out.println("user save ...");
return "{'module':'springmvc'}";
}
}


When requesting parameter name and formal parameter variable name Different when , Use RequestParam Solve .
Send with parameters Post request
Be careful Post How the request is sent 

POJO Parameters


public class User {
String name;
int id;
// Omit Getter,Setter and ToString Method
}
UserController.java
@Controller
@RequestMapping("/User")
public class UserController {
//2.2 Set the access path of the current operation
@RequestMapping("/save")
@ResponseBody
public String save(User user){
System.out.println(user);
System.out.println("user save ...");
return "{'module':'springmvc'}";
}
}


POJO Nested POJO Parameters



Array parameters

Set parameters

边栏推荐
- Explain promise usage in detail
- Numerical solution of partial differential equations with MATLAB
- 【STL源码剖析】仿函数(待补充)
- 海思调用接口之Makefile配置
- Why does RTOS system use MPU?
- [live broadcast appointment] database obcp certification comprehensive upgrade open class
- Integration of revolution and batch normalization
- Potplayer set minimized shortcut keys
- C MVC creates a view to get rid of the influence of layout
- RecyclerView结合ViewBinding的使用
猜你喜欢
随机推荐
Use of recyclerview with viewbinding
What can I do after buying a domain name?
[redis notes] compressed list (ziplist)
潘多拉 IOT 开发板学习(HAL 库)—— 实验3 按键输入实验(学习笔记)
Arduino - character judgment function
面试过了,起薪16k
golang入门:for...range修改切片中元素的值的另类方法
Connexion à distance de la tarte aux framboises en mode visionneur VNC
详解Promise使用
万物并作,吾以观复|OceanBase 政企行业实践
[adjustment] postgraduate enrollment of Northeast Petroleum University in 2022 (including adjustment)
The use of 8255 interface chip and ADC0809
Is 408 not fragrant? The number of universities taking the 408 examination this year has basically not increased!
Fudian bank completes the digital upgrade | oceanbase database helps to layout the distributed architecture of the middle office
Data set - fault diagnosis: various data and data description of bearings of Western Reserve University
基于Pyqt5工具栏按钮可实现界面切换-2
Win11麦克风测试在哪里?Win11测试麦克风的方法
Where is the win11 automatic shutdown setting? Two methods of setting automatic shutdown in win11
【直播预约】数据库OBCP认证全面升级公开课
Solving ordinary differential equations with MATLAB








