{"id":101577,"date":"2024-03-22T04:09:52","date_gmt":"2024-03-21T19:09:52","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/"},"modified":"2024-04-05T18:27:04","modified_gmt":"2024-04-05T09:27:04","slug":"springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/","title":{"rendered":"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f"},"content":{"rendered":"<p>Spring Boot\u306e\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u6cd5\u306f\u8c4a\u5bcc\u306b\u3042\u308a\u307e\u3059\u304c\u3001\u4e2d\u3067\u3082Hibernate Validator\u306b\u3088\u308b\u30c7\u30fc\u30bf\u691c\u8a3c\u304c\u6700\u3082\u4e00\u822c\u7684\u3067\u3059\u3002<\/p>\n<p>Hibernate Validator\u3092\u4f7f\u7528\u3057\u305f\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u9806\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002<\/p>\n<ol>\n<li>pom.xml\u30d5\u30a1\u30a4\u30eb\u306b\u4f9d\u5b58\u95a2\u4fc2\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>&lt;dependency&gt;\r\n    &lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\r\n    &lt;artifactId&gt;spring-boot-starter-validation&lt;\/artifactId&gt;\r\n&lt;\/dependency&gt;\r\n<\/code><\/pre>\n<ol>\n<li>\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u304c\u5fc5\u8981\u306a\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u30af\u30e9\u30b9\u3067\u306f\u3001\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u30d5\u30a3\u30fc\u30eb\u30c9\u3092\u4f7f\u7528\u3057\u3066\u30c1\u30a7\u30c3\u30af\u3057\u307e\u3059\u3002\u4f8b\u3048\u3070<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> javax.validation.constraints.NotEmpty;\r\n<span class=\"hljs-keyword\">import<\/span> javax.validation.constraints.NotNull;\r\n\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">User<\/span> {\r\n    <span class=\"hljs-meta\">@NotEmpty(message = \"\u7528\u6237\u540d\u4e0d\u80fd\u4e3a\u7a7a\")<\/span>\r\n    <span class=\"hljs-keyword\">private<\/span> String username;\r\n    \r\n    <span class=\"hljs-meta\">@NotNull(message = \"\u5e74\u9f84\u4e0d\u80fd\u4e3a\u7a7a\")<\/span>\r\n    <span class=\"hljs-keyword\">private<\/span> Integer age;\r\n\r\n    <span class=\"hljs-comment\">\/\/ \u7701\u7565getter\u548csetter\u65b9\u6cd5<\/span>\r\n}\r\n<\/code><\/pre>\n<ol>\n<li>\u672c\u8cea\u7684\u306b\u65e5\u672c\u8a9e\u3067\u8a00\u3044\u63db\u3048<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-keyword\">import<\/span> org.springframework.validation.annotation.Validated;\r\n\r\n<span class=\"hljs-meta\">@RestController<\/span>\r\n<span class=\"hljs-meta\">@Validated<\/span>\r\n<span class=\"hljs-keyword\">public<\/span> <span class=\"hljs-keyword\">class<\/span> <span class=\"hljs-title class_\">UserController<\/span> {\r\n    <span class=\"hljs-meta\">@PostMapping(\"\/users\")<\/span>\r\n    <span class=\"hljs-keyword\">public<\/span> String <span class=\"hljs-title function_\">createUser<\/span><span class=\"hljs-params\">(<span class=\"hljs-meta\">@RequestBody<\/span> <span class=\"hljs-meta\">@Valid<\/span> User user)<\/span> {\r\n        <span class=\"hljs-comment\">\/\/ \u5904\u7406\u521b\u5efa\u7528\u6237\u7684\u903b\u8f91<\/span>\r\n    }\r\n}\r\n<\/code><\/pre>\n<p>\u4e0a\u8a18\u306e\u4f8b\u3067\u306f\u3001@Valid \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306f User \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306e\u691c\u8a3c\u3092 Spring Boot \u306b\u4fc3\u3057\u3001\u305d\u306e\u7d50\u679c\u306f BindingResult \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u306b\u683c\u7d0d\u3055\u308c\u3001\u30e1\u30bd\u30c3\u30c9\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u306b BindingResult \u30d1\u30e9\u30e1\u30fc\u30bf\u30fc\u3092\u8ffd\u52a0\u3059\u308b\u3053\u3068\u3067\u691c\u8a3c\u7d50\u679c\u3092\u53d6\u5f97\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u304c\u5931\u6557\u3057\u305f\u5834\u5408\u306f\u3001BindingResult \u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304b\u3089\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306e\u30a8\u30e9\u30fc\u60c5\u5831\u3092\u53d7\u3051\u53d6\u308a\u3001\u9069\u5207\u306a\u51e6\u7406\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>Hibernate Validator \u4ee5\u5916\u306e\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306e\u624b\u6cd5\uff08\u30ab\u30b9\u30bf\u30e0\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3001\u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306b\u3088\u308b\u30d1\u30e9\u30e1\u30fc\u30bf\u30d0\u30ea\u30c7\u30fc\u30b7\u30e7\u30f3\u306a\u3069\uff09\u3082 Spring Boot \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u8a73\u7d30\u306f Spring Boot \u516c\u5f0f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3084\u95a2\u9023\u306e\u30c1\u30e5\u30fc\u30c8\u30ea\u30a2\u30eb\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Spring Boot\u306e\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u6cd5\u306f\u8c4a\u5bcc\u306b\u3042\u308a\u307e\u3059\u304c\u3001\u4e2d\u3067\u3082Hibernate Validator\u306b\u3088\u308b\u30c7\u30fc\u30bf\u691c\u8a3c\u304c\u6700\u3082\u4e00\u822c\u7684\u3067\u3059\u3002 Hibernate Validator\u3092\u4f7f\u7528\u3057\u305f\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u9806\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002  [&hellip;]<\/p>\n","protected":false},"author":6,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-101577","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud<\/title>\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.silicloud.com\/ja\/blog\/springboot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\" \/>\n<meta property=\"og:description\" content=\"Spring Boot\u306e\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u6cd5\u306f\u8c4a\u5bcc\u306b\u3042\u308a\u307e\u3059\u304c\u3001\u4e2d\u3067\u3082Hibernate Validator\u306b\u3088\u308b\u30c7\u30fc\u30bf\u691c\u8a3c\u304c\u6700\u3082\u4e00\u822c\u7684\u3067\u3059\u3002 Hibernate Validator\u3092\u4f7f\u7528\u3057\u305f\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u9806\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/springboot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-21T19:09:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-05T09:27:04+00:00\" \/>\n<meta name=\"author\" content=\"\u6d77\u6597, \u8475\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u6d77\u6597, \u8475\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/\",\"name\":\"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-21T19:09:52+00:00\",\"dateModified\":\"2024-04-05T09:27:04+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6\",\"name\":\"\u6d77\u6597, \u8475\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g\",\"caption\":\"\u6d77\u6597, \u8475\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud","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.silicloud.com\/ja\/blog\/springboot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\/","og_locale":"ja_JP","og_type":"article","og_title":"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f","og_description":"Spring Boot\u306e\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u6cd5\u306f\u8c4a\u5bcc\u306b\u3042\u308a\u307e\u3059\u304c\u3001\u4e2d\u3067\u3082Hibernate Validator\u306b\u3088\u308b\u30c7\u30fc\u30bf\u691c\u8a3c\u304c\u6700\u3082\u4e00\u822c\u7684\u3067\u3059\u3002 Hibernate Validator\u3092\u4f7f\u7528\u3057\u305f\u30c7\u30fc\u30bf\u691c\u8a3c\u624b\u9806\u306f\u6b21\u306e\u3068\u304a\u308a\u3067\u3059\u3002 [&hellip;]","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/springboot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-21T19:09:52+00:00","article_modified_time":"2024-04-05T09:27:04+00:00","author":"\u6d77\u6597, \u8475","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u6d77\u6597, \u8475"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/","name":"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-21T19:09:52+00:00","dateModified":"2024-04-05T09:27:04+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6"},"breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"SpringBoot\u306e\u30c7\u30fc\u30bf\u30c1\u30a7\u30c3\u30af\u306e\u65b9\u6cd5\u306f\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/20cfc053626f4d45c0fa7a4e7964b5b6","name":"\u6d77\u6597, \u8475","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/25aec9a18954b6bfb7e4f7219c2923d62c6f0c9f4d5c0171228fe41751c0ab7a?s=96&d=mm&r=g","caption":"\u6d77\u6597, \u8475"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/kaitoaoi\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/springboot%e3%81%ae%e3%83%87%e3%83%bc%e3%82%bf%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%81%ae%e6%96%b9%e6%b3%95%e3%81%af%ef%bc%9f\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101577","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=101577"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101577\/revisions"}],"predecessor-version":[{"id":322850,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/101577\/revisions\/322850"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=101577"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=101577"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=101577"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}