{"id":8410,"date":"2023-11-28T20:27:25","date_gmt":"2023-11-28T12:27:25","guid":{"rendered":"https:\/\/wx.kaifamiao.info\/?p=8410"},"modified":"2023-12-06T10:28:57","modified_gmt":"2023-12-06T02:28:57","slug":"springboot-de-requestmapping-he-getmapping-de-bu-t","status":"publish","type":"post","link":"http:\/\/wx.kaifamiao.info\/index.php\/2023\/11\/28\/springboot-de-requestmapping-he-getmapping-de-bu-t\/","title":{"rendered":"SpringBoot \u7684 RequestMapping \u548c GetMapping \u7684\u4e0d\u540c\u4e4b\u5904\u5728\u54ea\u91cc\uff1f"},"content":{"rendered":"<p>\u5728Spring Boot\u4e2d\uff0c<code>@RequestMapping<\/code> \u548c <code>@GetMapping<\/code> \u662f\u7528\u4e8e\u6620\u5c04HTTP\u8bf7\u6c42\u5230\u5904\u7406\u65b9\u6cd5\u7684\u6ce8\u89e3\u3002\u5b83\u4eec\u4e4b\u95f4\u7684\u4e3b\u8981\u533a\u522b\u5728\u4e8e\u4f7f\u7528\u65b9\u5f0f\u548c\u8bed\u6cd5\u7cd6\u3002<\/p>\n<ol>\n<li>\n<strong><code>@RequestMapping<\/code>\uff1a<\/strong><\/p>\n<ul>\n<li><code>@RequestMapping<\/code> \u662f\u4e00\u4e2a\u901a\u7528\u7684\u6ce8\u89e3\uff0c\u5b83\u53ef\u4ee5\u7528\u4e8e\u5904\u7406\u5404\u79cdHTTP\u8bf7\u6c42\u65b9\u6cd5\uff0c\u5305\u62ecGET\u3001POST\u3001PUT\u3001DELETE\u7b49\u3002\u901a\u8fc7\u6307\u5b9a<code>method<\/code>\u5c5e\u6027\uff0c\u53ef\u4ee5\u9650\u5236\u5904\u7406\u7684HTTP\u65b9\u6cd5\u3002\u793a\u4f8b\uff1a<\/li>\n<\/ul>\n<pre><code class=\"language-java\">@Controller\n@RequestMapping(&quot;\/example&quot;)\npublic class ExampleController {\n\n    @RequestMapping(value = &quot;\/path&quot;, method = RequestMethod.GET)\n    public String exampleMethod() {\n        return &quot;example&quot;;\n    }\n}\n<\/code><\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u4f8b\u5b50\u4e2d\uff0c<code>@RequestMapping<\/code> \u6ce8\u89e3\u6307\u5b9a\u4e86\u5904\u7406 <code>\/example\/path<\/code> \u8def\u5f84\u7684GET\u8bf7\u6c42\u3002\n<\/li>\n<li>\n<strong><code>@GetMapping<\/code>\uff1a<\/strong><\/p>\n<ul>\n<li><code>@GetMapping<\/code> \u662f <code>@RequestMapping<\/code> \u7684\u7f29\u5199\uff0c\u4e13\u95e8\u7528\u4e8e\u5904\u7406GET\u8bf7\u6c42\u3002\u5b83\u662fSpring 4.3\u7248\u672c\u5f15\u5165\u7684\u8bed\u6cd5\u7cd6\uff0c\u4e3a\u5e38\u89c1\u7684GET\u8bf7\u6c42\u63d0\u4f9b\u4e86\u66f4\u7b80\u6d01\u7684\u65b9\u5f0f\u3002\u793a\u4f8b\uff1a<\/li>\n<\/ul>\n<pre><code class=\"language-java\">@Controller\n@RequestMapping(&quot;\/example&quot;)\npublic class ExampleController {\n\n    @GetMapping(&quot;\/path&quot;)\n    public String exampleMethod() {\n        return &quot;example&quot;;\n    }\n}\n<\/code><\/pre>\n<p>\u4e0a\u9762\u7684\u4f8b\u5b50\u4e2d\uff0c<code>@GetMapping<\/code> \u6ce8\u89e3\u5b9e\u9645\u4e0a\u7b49\u540c\u4e8e <code>@RequestMapping(value = &quot;\/example\/path&quot;, method = RequestMethod.GET)<\/code>\u3002\n<\/li>\n<\/ol>\n<p>\u603b\u7684\u6765\u8bf4\uff0c<code>@GetMapping<\/code> \u662f\u4e00\u79cd\u66f4\u7b80\u6d01\u3001\u66f4\u6e05\u6670\u7684\u65b9\u5f0f\uff0c\u9002\u7528\u4e8e\u5904\u7406GET\u8bf7\u6c42\u7684\u573a\u666f\u3002\u5982\u679c\u4f60\u7684\u5904\u7406\u65b9\u6cd5\u53ea\u5904\u7406GET\u8bf7\u6c42\uff0c\u63a8\u8350\u4f7f\u7528 <code>@GetMapping<\/code>\uff0c\u5b83\u80fd\u591f\u63d0\u9ad8\u4ee3\u7801\u7684\u53ef\u8bfb\u6027\u3002\u5982\u679c\u5904\u7406\u65b9\u6cd5\u9700\u8981\u5904\u7406\u591a\u79cdHTTP\u65b9\u6cd5\uff0c\u6216\u8005\u9700\u8981\u66f4\u591a\u7684\u5b9a\u5236\u5316\uff0c\u53ef\u4ee5\u4f7f\u7528 <code>@RequestMapping<\/code>\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5728Spring Boot\u4e2d\uff0c@RequestMapping \u548c @GetMapping \u662f\u7528\u4e8e\u6620\u5c04HTTP\u8bf7\u6c42 [&hellip;]<\/p>\n","protected":false},"author":9,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[100],"tags":[],"class_list":["post-8410","post","type-post","status-publish","format-standard","hentry","category-springboot"],"_links":{"self":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8410","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/users\/9"}],"replies":[{"embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/comments?post=8410"}],"version-history":[{"count":2,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8410\/revisions"}],"predecessor-version":[{"id":16609,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/posts\/8410\/revisions\/16609"}],"wp:attachment":[{"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/media?parent=8410"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/categories?post=8410"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/wx.kaifamiao.info\/index.php\/wp-json\/wp\/v2\/tags?post=8410"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}