一文帶你搞懂Java中Get和Post的使用
1 Get請求數(shù)據(jù)
項目地址:https://github.com/Snowstorm0/learn-get-post
1.1 Controller
文件名MyController,內(nèi)容為:
@RestController
@RequestMapping("/homepage")
publicclass MyController {
@Autowired
MyService myService;
@GetMapping("/learnGet")
public String learnGet(){
return myService.learnGet();
}
}
1.2 Service
文件名MyService,內(nèi)容為:
@Service
@EnableScheduling
publicclass MyService {
public String learnGet(){
Long timeLong = System.currentTimeMillis();
SimpleDateFormat timeFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //設(shè)置格式
String timeString = timeFormat.format(timeLong);
return timeString;
}
}
1.3 Application
在application.properties配置:
# 設(shè)置端口號 server.port=8888
1.4 Postman
配置Get,地址為:http://localhost:8888/homepage/returnTime 。
即可獲得當(dāng)前時間戳。

2 Post接收數(shù)據(jù)
項目地址:https://github.com/Snowstorm0/learn-get-post
2.1 Controller
文件名MyController,內(nèi)容為:
@RestController
@RequestMapping("/homepage")
publicclass MyController {
@Autowired
MyService myService;
@PostMapping("/postReceive")
public Map<String, Object> postReceive(@RequestParam("number") int number, @RequestParam("name") String name) {
return myService.postReceive(number, name);
}
@PostMapping("/postReceiveByMap")
public Map<String, Object> postReceiveByMap(@RequestParam Map<String, Object> map) {
System.out.println("map:" + map + "\n");
return myService.postReceiveByMap(map);
}
}
2.2 Service
文件名MyService,內(nèi)容為:
@Service
@EnableScheduling
publicclass MyService {
public Map<String, Object> postReceive(int number, String name){
Map<String, Object> res = new HashMap<>();
res.put("number", number);
res.put("name", name);
return res;
}
public Map<String, Object> postReceiveByMap(Map<String, Object> map){
int number = map.get("number") == null ? 0 : Integer.parseInt((String) map.get("number"));
String name = map.get("name") == null ? "" : (String)map.get("name");
Map<String, Object> res = new HashMap<>();
res.put("number", number);
res.put("name", name);
System.out.println("map:" + map + "\n");
System.out.println("res:" + res + "\n");
return res;
}
2.3 Application
在application.properties配置:
# 設(shè)置端口號 server.port=8888
2.4 Postman
配置Get,地址為:http://localhost:8888/homepage/returnTime 。
即可獲得輸出。

3 Post發(fā)送數(shù)據(jù)
項目地址:https://github.com/Snowstorm0/learn-post-send
需要注意,RestTemplate在postForObject時,用MultiValueMap,不可使用HashMap。
3.1 Controller
文件名MyController,內(nèi)容為:
@RestController
@RequestMapping("/homepage")
publicclass MyController {
@Autowired
MyService myService;
@PostMapping("/postSend")
public Map<String, Object> postSend() {
return myService.postSend();
}
}
3.2 Service
文件名MyService,內(nèi)容為:
@Service
@EnableScheduling
publicclass MyService {
@Resource
private RestTemplate restTemplate;
String URL = "http://localhost:8888/homepage/postReceiveByMap";
public Map<String, Object> postSend(){
Map<String, Object> sendData = new HashMap<>();
sendData.put("number", 3);
sendData.put("name", "張三");
ResponseEntity<ResponseResult> responseData = restTemplate.postForEntity(URL, sendData, ResponseResult.class);
Map<String, Object> returnData = new HashMap<>();
returnData.put("StatusCode:", responseData.getStatusCode());
returnData.put("Body:", responseData.getBody());
return returnData;
}
}
3.3 ResponseResult
publicclass ResponseResult {
privateint number;
private String name;
public ResponseResult(){
}
public int getNumber() {
return number;
}
public void setNumber(int number) {
this.number = number;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return"ResponseResult [number=" + number + ",name=" + name + "]";
}
}
3.4 Config
@Configuration
publicclass Config {
@Bean
public RestTemplate restTemplate(RestTemplateBuilder builder){
return builder.build();
}
}
3.5 Application
在application.properties配置:
# 設(shè)置端口號 server.port=8889
3.6 Postman
配置Post,地址為: http://localhost:8889/homepage/postSend
即可獲得輸出。

以上就是一文帶你搞懂Java中Get和Post的使用的詳細內(nèi)容,更多關(guān)于Java Get Post的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
springboot高并發(fā)下提高吞吐量的實現(xiàn)
這篇文章主要介紹了springboot高并發(fā)下提高吞吐量的實現(xiàn),文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-11-11
java發(fā)送kafka事務(wù)消息的實現(xiàn)方法
本文主要介紹了java發(fā)送kafka事務(wù)消息的實現(xiàn)方法,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-07-07
Springboot如何去掉URL后面的jsessionid
這篇文章主要介紹了Springboot如何去掉URL后面的jsessionid,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-11-11
SpringBoot整合RabbitMQ實現(xiàn)流量消峰
RabbitMQ 即一個消息隊列,主要是用來實現(xiàn)應(yīng)用程序的異步和解耦,同時也能起到消息緩沖,消息分發(fā)的作用,消息中間件在互聯(lián)網(wǎng)公司的使用中越來越多,本文給大家介紹了SpringBoot整合RabbitMQ實現(xiàn)流量消峰,需要的朋友可以參考下2024-12-12
java基礎(chǔ)學(xué)習(xí)JVM中GC的算法
這篇文章主要介紹了java基礎(chǔ)學(xué)習(xí)JVM中GC的算法,通過圖文加深對GC算法思路的理解。2017-11-11

