真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

SpringBoot中如何使用@RestController注解實現(xiàn)http請求

本篇內(nèi)容主要講解“SpringBoot中如何使用@RestController注解實現(xiàn)http請求”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學(xué)習(xí)“SpringBoot中如何使用@RestController注解實現(xiàn)http請求”吧!

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比炎陵網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式炎陵網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋炎陵地區(qū)。費用合理售后完善,十余年實體公司更值得信賴。

@RestController

@RestController = @Controller + @ResponseBody組成,等號右邊兩位同志簡單介紹兩句,就明白我們@RestController的意義了:

@Controller 將當(dāng)前修飾的類注入SpringBoot IOC容器,使得從該類所在的項目跑起來的過程中,這個類就被實例化。當(dāng)然也有語義化的作用,即代表該類是充當(dāng)Controller的作用

@ResponseBody 它的作用簡短截說就是指該類中所有的API接口返回的數(shù)據(jù),甭管你對應(yīng)的方法返回Map或是其他Object,它會以Json字符串的形式返回給客戶端,本人嘗試了一下,如果返回的是String類型,則仍然是String。

@RestController
@RequestMapping("test")
public class SampleController {

  @GetMapping
  public Map testGet() {
    return new HashMap(){{
      put("name", "springboot");
    }};
  }

  @GetMapping(path = "str")
  public String testGetStr() {
    return "OK";
  }
}

這部分代碼對于Map返回則是JSON String,對于String則仍然是String

SpringBoot中如何使用@RestController注解實現(xiàn)http請求

SpringBoot中如何使用@RestController注解實現(xiàn)http請求

當(dāng)將@RestController換成@Controller之后,對于/test的返回值如下圖:

SpringBoot中如何使用@RestController注解實現(xiàn)http請求

到此,相信大家對“SpringBoot中如何使用@RestController注解實現(xiàn)http請求”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!


當(dāng)前名稱:SpringBoot中如何使用@RestController注解實現(xiàn)http請求
網(wǎng)址分享:http://weahome.cn/article/gdciih.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部