{"id":343,"date":"2024-07-19T22:35:34","date_gmt":"2024-07-19T14:35:34","guid":{"rendered":"https:\/\/forelink.top\/?p=343"},"modified":"2024-07-19T22:35:36","modified_gmt":"2024-07-19T14:35:36","slug":"springmvc-getpost%e8%af%b7%e6%b1%82%e6%8e%a5%e5%8f%97%e5%8f%82%e6%95%b0","status":"publish","type":"post","link":"https:\/\/forelink.top\/index.php\/2024\/07\/19\/springmvc-getpost%e8%af%b7%e6%b1%82%e6%8e%a5%e5%8f%97%e5%8f%82%e6%95%b0\/","title":{"rendered":"SpringMVC-Get&amp;Post\u8bf7\u6c42\u63a5\u53d7\u53c2\u6570"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\" id=\"getpost\u8bf7\u6c42\u63a5\u53d7\u53c2\u6570\">Get&amp;Post\u8bf7\u6c42\u63a5\u53d7\u53c2\u6570<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"url\u53c2\u6570\u63a5\u53d7\uff1a\">url\u53c2\u6570\u63a5\u53d7\uff1a<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"\u63a7\u5236\u5668\u5199\u6cd5\uff1a\">\u63a7\u5236\u5668\u5199\u6cd5\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>@RequestMapping(\"\/cp\")\n@ResponseBody\npublic String cp(String name,int id){\n    System.out.println(\"name: \" + name);\n    System.out.println(\"id: \" + id);\n    return \"{'module':'user cp'}\";\n}\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"\u8bf7\u6c42\u65b9\u5f0f\uff1a\">\u8bf7\u6c42\u65b9\u5f0f\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/\u7a0b\u5e8f\u542f\u52a8\u540e\u5728\u6d4f\u89c8\u5668\u4e2d\u8bbf\u95ee\nhttp:&#47;&#47;localhost:8080\/user\/cp?name=nihao&amp;id=1\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"\u63a7\u5236\u53f0\u8f93\u51fa\u7ed3\u679c\uff1a\">\u63a7\u5236\u53f0\u8f93\u51fa\u7ed3\u679c\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>name: nihao\nid: 1\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"\u6d4f\u89c8\u5668\u663e\u793a\u7ed3\u679c\uff1a\">\u6d4f\u89c8\u5668\u663e\u793a\u7ed3\u679c\uff1a<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>{'module':'user cp'}\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u8868\u5355\u53c2\u6570\u63a5\u53d7\uff1a\">\u8868\u5355\u53c2\u6570\u63a5\u53d7\uff1a<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"\u8868\u5355\u683c\u5f0f\uff1a\">\u8868\u5355\u683c\u5f0f\uff1a<\/h3>\n\n\n\n<p>form-data\n    \u53ef\u4ee5\u643a\u5e26\u6587\u4ef6<\/p>\n\n\n\n<p>x-www-form-urlencoded\n    \u666e\u901a\u8868\u5355<\/p>\n\n\n\n<p>\u8868\u5355\u4e2d\u7684\u53c2\u6570\u540d \u5bf9\u5e94 \u65b9\u6cd5\u4e2d\u7684\u53c2\u6570\u540d \u65f6\uff0c\u4e00\u6837\u80fd\u63a5\u53d7\u5230\u6570\u636e<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"\u63a7\u5236\u53f0\u4e2d\u6587\u4e71\u7801\u95ee\u9898\u89e3\u51b3\uff1a\">\u63a7\u5236\u53f0\u4e2d\u6587\u4e71\u7801\u95ee\u9898\u89e3\u51b3\uff1a<\/h2>\n\n\n\n<p>\u5728ServletContainerInitConfig\u52a0\u5165Filter<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/\/\u4e71\u7801\u5904\u7406 \u5bfc\u5165javax.servlet\u7684\u5305\n    @Override\n    protected Filter&#91;] getServletFilters() {\n        CharacterEncodingFilter filter1 = new CharacterEncodingFilter();\n        filter1.setEncoding(\"UTF-8\");\n        return new Filter&#91;]{filter1};\n    }\n<\/code><\/pre>\n\n\n\n<p>*\u4f46\u662f\u597d\u50cf\u8fd8\u662f\u6ca1\u6709\u89e3\u51b3\uff0c\u5e94\u8be5\u662fIDEA\u63a7\u5236\u53f0\u95ee\u9898\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Get&amp;Post\u8bf7\u6c42\u63a5\u53d7\u53c2\u6570 url\u53c2\u6570\u63a5\u53d7\uff1a \u63a7\u5236\u5668\u5199\u6cd5\uff1a \u8bf7\u6c42\u65b9\u5f0f\uff1a \u63a7\u5236\u53f0\u8f93\u51fa\u7ed3\u679c\uff1a \u6d4f\u89c8\u5668\u663e\u793a [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_import_markdown_pro_load_document_selector":0,"_import_markdown_pro_submit_text_textarea":"","footnotes":""},"categories":[28,17],"tags":[],"class_list":["post-343","post","type-post","status-publish","format-standard","hentry","category-spring","category-17"],"_links":{"self":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/343","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/comments?post=343"}],"version-history":[{"count":1,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/343\/revisions"}],"predecessor-version":[{"id":344,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/posts\/343\/revisions\/344"}],"wp:attachment":[{"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/media?parent=343"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/categories?post=343"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/forelink.top\/index.php\/wp-json\/wp\/v2\/tags?post=343"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}