{"id":453,"date":"2023-10-31T11:42:14","date_gmt":"2023-10-31T03:42:14","guid":{"rendered":"https:\/\/www.talktop.cn\/?p=453"},"modified":"2025-01-01T14:12:09","modified_gmt":"2025-01-01T06:12:09","slug":"springboot%e9%85%8d%e7%bd%ae%e4%b8%8e%e8%87%aa%e5%8a%a8%e5%8c%96","status":"publish","type":"post","link":"https:\/\/www.talktop.cn\/?p=453","title":{"rendered":"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316"},"content":{"rendered":"\n<h5 class=\"wp-block-heading\">\u4e00. <strong>\u4ecb\u7ecd<\/strong><\/h5>\n\n\n\n<p>Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355\u7684\u5c5e\u6027\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u63a7\u5236 Spring Boot \u7684\u5404\u79cd\u7279\u6027\uff0c\u4ece\u6570\u636e\u6e90\u914d\u7f6e\u5230\u5d4c\u5165\u5f0f\u670d\u52a1\u5668\u7684\u8bbe\u7f6e\u3002<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">\u4e8c. <strong>\u63cf\u8ff0\u53ca\u4f7f\u7528\u573a\u666f<\/strong><\/h5>\n\n\n\n<p>(1) <strong>\u5feb\u901f\u539f\u578b\u5f00\u53d1<\/strong>\uff1a\u901a\u8fc7\u81ea\u52a8\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u5feb\u901f\u542f\u52a8\u5e76\u8fd0\u884c\u5e94\u7528\uff0c\u65e0\u9700\u8fdb\u884c\u7e41\u7410\u7684\u914d\u7f6e\u3002<\/p>\n\n\n\n<p>(2) <strong>\u751f\u4ea7\u73af\u5883\u90e8\u7f72<\/strong>\uff1a\u901a\u8fc7\u5916\u90e8\u5316\u7684\u914d\u7f6e\uff0c\u53ef\u4ee5\u8f7b\u677e\u5730\u4e3a\u4e0d\u540c\u7684\u73af\u5883\u63d0\u4f9b\u4e0d\u540c\u7684\u914d\u7f6e\u3002<\/p>\n\n\n\n<p>(3) <strong>\u5fae\u670d\u52a1\u914d\u7f6e\u7ba1\u7406<\/strong>\uff1a\u7ed3\u5408 Spring Cloud Config\uff0c\u53ef\u4ee5\u5b9e\u73b0\u96c6\u4e2d\u5f0f\u7684\u914d\u7f6e\u7ba1\u7406\u3002<\/p>\n\n\n\n<h5 class=\"wp-block-heading\">\u4e09. <strong>\u529f\u80fd\u4ecb\u7ecd<\/strong><\/h5>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>\u5c5e\u6027\u914d\u7f6e<\/strong><\/h6>\n\n\n\n<p>(1) <strong>\u529f\u80fd\u5bf9\u5e94\u6e90\u7801\u5206\u6790<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>\/\/ SpringApplication \u662f Spring Boot \u7684\u6838\u5fc3\u7c7b\uff0c\u8d1f\u8d23\u52a0\u8f7d\u5c5e\u6027\u914d\u7f6e\npublic class SpringApplication {\n    \/\/ ... \u7701\u7565\u90e8\u5206\u4ee3\u7801\n\n    \/\/ \u52a0\u8f7d\u5c5e\u6027\u914d\u7f6e\n    private void load(Properties properties, String path) {\n        \/\/ ... \u7701\u7565\u90e8\u5206\u4ee3\u7801\n    }\n}<\/code><\/pre>\n\n\n\n<p>\u89e3\u8bfb\u6ce8\u91ca\uff1a\u6b64\u6bb5\u4ee3\u7801\u4ece <code>application.properties<\/code> \u6216 <code>application.yml<\/code> \u6587\u4ef6\u4e2d\u52a0\u8f7d\u5c5e\u6027\u914d\u7f6e\u3002<\/p>\n\n\n\n<p>(2) <strong>\u529f\u80fd\u4f7f\u7528\u6ce8\u610f\u4e8b\u9879<\/strong>: \u786e\u4fdd\u914d\u7f6e\u6587\u4ef6\u4f4d\u4e8e <code>src\/main\/resources<\/code> \u76ee\u5f55\u4e0b\u3002<\/p>\n\n\n\n<p>(3) <strong>\u529f\u80fd\u5bf9\u5e94\u4f7f\u7528\u6848\u4f8b<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-cyan-bluish-gray-background-color has-text-color has-background\"><code># application.properties\nspring.datasource.url=jdbc:mysql:\/\/localhost:3306\/mydb\nspring.datasource.username=root\nspring.datasource.password=root<\/code><\/pre>\n\n\n\n<h6 class=\"wp-block-heading\"><strong>\u914d\u7f6e\u7c7b<\/strong><\/h6>\n\n\n\n<p>(1) <strong>\u529f\u80fd\u5bf9\u5e94\u6e90\u7801\u5206\u6790<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>\/ @Configuration \u6ce8\u89e3\u6807\u8bb0\u4e00\u4e2a\u7c7b\u4e3a\u914d\u7f6e\u7c7b\n@Configuration\npublic class MyConfig {\n    \/\/ ... \u7701\u7565\u90e8\u5206\u4ee3\u7801\n}<\/code><\/pre>\n\n\n\n<p>\u89e3\u8bfb\u6ce8\u91ca\uff1a\u6b64\u6bb5\u4ee3\u7801\u5b9a\u4e49\u4e86\u4e00\u4e2a\u914d\u7f6e\u7c7b\uff0c\u53ef\u4ee5\u5728\u5176\u4e2d\u5b9a\u4e49 beans\u3002<\/p>\n\n\n\n<p>(2) <strong>\u529f\u80fd\u4f7f\u7528\u6ce8\u610f\u4e8b\u9879<\/strong>: \u786e\u4fdd\u914d\u7f6e\u7c7b\u4f4d\u4e8e\u626b\u63cf\u8def\u5f84\u4e0b\u3002<\/p>\n\n\n\n<p>(3) <strong>\u529f\u80fd\u5bf9\u5e94\u4f7f\u7528\u6848\u4f8b<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code>@Configuration\npublic class AppConfig {\n    @Bean\n    public MyService myService() {\n        return new MyServiceImpl();\n    }\n}<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">\u56db. <strong>\u9762\u8bd5\u5e38\u89c1\u95ee\u9898\u53ca\u8be6\u7ec6\u89e3\u7b54<\/strong><\/h4>\n\n\n\n<p><strong>Q1<\/strong>: Spring Boot \u7684\u5c5e\u6027\u914d\u7f6e\u6709\u54ea\u4e9b\u65b9\u5f0f\uff1f <\/p>\n\n\n\n<p><strong>A1<\/strong>: Spring Boot \u652f\u6301\u591a\u79cd\u5c5e\u6027\u914d\u7f6e\u65b9\u5f0f\uff0c\u5305\u62ec <code>application.properties<\/code>\u3001<code>application.yml<\/code> \u6587\u4ef6\uff0c\u73af\u5883\u53d8\u91cf\uff0c\u547d\u4ee4\u884c\u53c2\u6570\u7b49\u3002<\/p>\n\n\n\n<p><strong>Q2<\/strong>: \u5982\u4f55\u5728 Spring Boot \u4e2d\u4f7f\u7528\u81ea\u5b9a\u4e49\u7684\u914d\u7f6e\u6587\u4ef6\uff1f <\/p>\n\n\n\n<p><strong>A2<\/strong>: \u53ef\u4ee5\u4f7f\u7528 <code>@PropertySource<\/code> \u6ce8\u89e3\u52a0\u8f7d\u81ea\u5b9a\u4e49\u7684\u914d\u7f6e\u6587\u4ef6\u3002<\/p>\n\n\n\n<p><strong>Q3<\/strong>: Spring Boot \u4e2d\u7684\u914d\u7f6e\u7c7b\u548c\u4f20\u7edf\u7684 XML \u914d\u7f6e\u6709\u4ec0\u4e48\u533a\u522b\uff1f <\/p>\n\n\n\n<p><strong>A3<\/strong>: \u914d\u7f6e\u7c7b\u63d0\u4f9b\u4e86\u4e00\u79cd\u7c7b\u578b\u5b89\u5168\u7684\u65b9\u5f0f\u6765\u5b9a\u4e49\u548c\u7ba1\u7406 beans\uff0c\u800c XML \u914d\u7f6e\u5219\u662f\u58f0\u660e\u5f0f\u7684\u3002<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>\u603b\u7ed3<\/strong><\/h4>\n\n\n\n<p>Spring Boot \u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\u4e3a\u5f00\u53d1\u8005\u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u5de5\u5177\uff0c\u4f7f\u5f97\u914d\u7f6e\u7ba1\u7406\u53d8\u5f97\u7b80\u5355\u800c\u53c8\u7075\u6d3b\u3002\u901a\u8fc7\u5c5e\u6027\u914d\u7f6e\u548c\u914d\u7f6e\u7c7b\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\uff0c\u6ee1\u8db3\u4e0d\u540c\u7684\u9700\u6c42\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00. \u4ecb\u7ecd Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[118,59],"tags":[28,16],"class_list":["post-453","post","type-post","status-publish","format-standard","hentry","category-118","category-59","tag-springboot","tag-java"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316<\/title>\n<meta name=\"description\" content=\"Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355\u7684\u5c5e\u6027\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u63a7\u5236 Spring Boot \u7684\u5404\u79cd\u7279\u6027\uff0c\u4ece\u6570\u636e\u6e90\u914d\u7f6e\u5230\u5d4c\u5165\u5f0f\u670d\u52a1\u5668\u7684\u8bbe\u7f6e\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.talktop.cn\/?p=453\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.talktop.cn\/?p=453#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=453\"},\"author\":{\"name\":\"AI\u98ce\u5411\u6807\",\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"headline\":\"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316\",\"datePublished\":\"2023-10-31T03:42:14+00:00\",\"dateModified\":\"2025-01-01T06:12:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=453\"},\"wordCount\":29,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"keywords\":[\"springboot\",\"\u7f16\u7a0b\"],\"articleSection\":[\"\u540e\u7aef\u5f00\u53d1\",\"\u7f16\u7a0b\u6280\u672f\"],\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.talktop.cn\/?p=453#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.talktop.cn\/?p=453\",\"url\":\"https:\/\/www.talktop.cn\/?p=453\",\"name\":\"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316\",\"isPartOf\":{\"@id\":\"https:\/\/www.talktop.cn\/#website\"},\"datePublished\":\"2023-10-31T03:42:14+00:00\",\"dateModified\":\"2025-01-01T06:12:09+00:00\",\"description\":\"Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355\u7684\u5c5e\u6027\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u63a7\u5236 Spring Boot \u7684\u5404\u79cd\u7279\u6027\uff0c\u4ece\u6570\u636e\u6e90\u914d\u7f6e\u5230\u5d4c\u5165\u5f0f\u670d\u52a1\u5668\u7684\u8bbe\u7f6e\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.talktop.cn\/?p=453#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.talktop.cn\/?p=453\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.talktop.cn\/?p=453#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.talktop.cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.talktop.cn\/#website\",\"url\":\"https:\/\/www.talktop.cn\/\",\"name\":\"AI\u98ce\u5411\u6807\",\"description\":\"ChatGPT \u4eba\u5de5\u667a\u80fd \u7f16\u7a0b\u6280\u672f AIGC \u540e\u7aef\u6280\u672f \u524d\u7aef\u6280\u672f \u70ed\u95e8\u63d2\u4ef6 \u8fd0\u8425\u76f8\u5173 ChatGPT\u8ba2\u9605 Claude\u5145\u503c \u6d77\u5916\u5145\u503c \u8c37\u6b4c\u90ae\u7bb1\",\"publisher\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\"},\"alternateName\":\"AI\u98ce\u5411\u6807\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.talktop.cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab\",\"name\":\"AI\u98ce\u5411\u6807\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg\",\"contentUrl\":\"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg\",\"width\":512,\"height\":512,\"caption\":\"AI\u98ce\u5411\u6807\"},\"logo\":{\"@id\":\"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316","description":"Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355\u7684\u5c5e\u6027\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u63a7\u5236 Spring Boot \u7684\u5404\u79cd\u7279\u6027\uff0c\u4ece\u6570\u636e\u6e90\u914d\u7f6e\u5230\u5d4c\u5165\u5f0f\u670d\u52a1\u5668\u7684\u8bbe\u7f6e\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.talktop.cn\/?p=453","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.talktop.cn\/?p=453#article","isPartOf":{"@id":"https:\/\/www.talktop.cn\/?p=453"},"author":{"name":"AI\u98ce\u5411\u6807","@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"headline":"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316","datePublished":"2023-10-31T03:42:14+00:00","dateModified":"2025-01-01T06:12:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.talktop.cn\/?p=453"},"wordCount":29,"commentCount":0,"publisher":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"keywords":["springboot","\u7f16\u7a0b"],"articleSection":["\u540e\u7aef\u5f00\u53d1","\u7f16\u7a0b\u6280\u672f"],"inLanguage":"zh-Hans","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.talktop.cn\/?p=453#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.talktop.cn\/?p=453","url":"https:\/\/www.talktop.cn\/?p=453","name":"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316","isPartOf":{"@id":"https:\/\/www.talktop.cn\/#website"},"datePublished":"2023-10-31T03:42:14+00:00","dateModified":"2025-01-01T06:12:09+00:00","description":"Spring Boot \u63d0\u4f9b\u4e86\u5f3a\u5927\u7684\u914d\u7f6e\u548c\u81ea\u52a8\u5316\u529f\u80fd\uff0c\u4f7f\u5f00\u53d1\u8005\u80fd\u591f\u8f7b\u677e\u5730\u81ea\u5b9a\u4e49\u5e94\u7528\u7684\u884c\u4e3a\u3002\u901a\u8fc7\u7b80\u5355\u7684\u5c5e\u6027\u914d\u7f6e\uff0c\u5f00\u53d1\u8005\u53ef\u4ee5\u63a7\u5236 Spring Boot \u7684\u5404\u79cd\u7279\u6027\uff0c\u4ece\u6570\u636e\u6e90\u914d\u7f6e\u5230\u5d4c\u5165\u5f0f\u670d\u52a1\u5668\u7684\u8bbe\u7f6e\u3002","breadcrumb":{"@id":"https:\/\/www.talktop.cn\/?p=453#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.talktop.cn\/?p=453"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.talktop.cn\/?p=453#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.talktop.cn\/"},{"@type":"ListItem","position":2,"name":"Spring Boot \u914d\u7f6e\u4e0e\u81ea\u52a8\u5316"}]},{"@type":"WebSite","@id":"https:\/\/www.talktop.cn\/#website","url":"https:\/\/www.talktop.cn\/","name":"AI\u98ce\u5411\u6807","description":"ChatGPT \u4eba\u5de5\u667a\u80fd \u7f16\u7a0b\u6280\u672f AIGC \u540e\u7aef\u6280\u672f \u524d\u7aef\u6280\u672f \u70ed\u95e8\u63d2\u4ef6 \u8fd0\u8425\u76f8\u5173 ChatGPT\u8ba2\u9605 Claude\u5145\u503c \u6d77\u5916\u5145\u503c \u8c37\u6b4c\u90ae\u7bb1","publisher":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab"},"alternateName":"AI\u98ce\u5411\u6807","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.talktop.cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":["Person","Organization"],"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/25908db5f654913a22bc38d48fad71ab","name":"AI\u98ce\u5411\u6807","image":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/","url":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg","contentUrl":"https:\/\/www.talktop.cn\/wp-content\/uploads\/2023\/10\/cropped-f09060ba975518b80d3b0b63b47108a6.jpeg","width":512,"height":512,"caption":"AI\u98ce\u5411\u6807"},"logo":{"@id":"https:\/\/www.talktop.cn\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/\/"]}]}},"_links":{"self":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts\/453","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=453"}],"version-history":[{"count":0,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=\/wp\/v2\/posts\/453\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=453"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=453"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.talktop.cn\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=453"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}