{"id":159,"date":"2019-06-14T10:33:55","date_gmt":"2019-06-14T01:33:55","guid":{"rendered":"http:\/\/2019se3.satoshis.jp\/?p=159"},"modified":"2019-06-18T11:56:05","modified_gmt":"2019-06-18T02:56:05","slug":"6%e6%9c%8814%e6%97%a5","status":"publish","type":"post","link":"https:\/\/2019se3.satoshis.jp\/?p=159","title":{"rendered":"6\u670814\u65e5"},"content":{"rendered":"<h3>\u30e2\u30c7\u30eb\u3068\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9<\/h3>\n<p>\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u5fdc\u3059\u308bPOJO\u30af\u30e9\u30b9\u3068\u3057\u3066MyData\u3092\u5b9a\u7fa9\u3059\u308b\u3002<br \/>\nMyData\u30af\u30e9\u30b9\u306b\u306f\u3001\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059\u305f\u3081\u306b @Entity \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3064\u3051\u308b\u3002<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\npackage jp.abc;\r\n\r\nimport javax.persistence.Column;\r\nimport javax.persistence.Entity;\r\nimport javax.persistence.GeneratedValue;\r\nimport javax.persistence.GenerationType;\r\nimport javax.persistence.Id;\r\n\r\n@Entity\r\npublic class MyData {\r\n\t@Id\r\n\t@GeneratedValue(strategy = GenerationType.AUTO)\r\n\t@Column\r\n\tprivate long id;\r\n\r\n\t@Column(length = 50, nullable = false)\r\n\tprivate String name;\r\n\r\n\t@Column(length = 200, nullable = true)\r\n\tprivate String mail;\r\n\r\n\t@Column(nullable = true)\r\n\tprivate Integer age;\r\n\r\n\t@Column(nullable = true)\r\n\tprivate String memo;\r\n\r\n\tpublic long getId() {\r\n\t\treturn id;\r\n\t}\r\n\r\n\tpublic void setId(long id) {\r\n\t\tthis.id = id;\r\n\t}\r\n\r\n\tpublic String getName() {\r\n\t\treturn name;\r\n\t}\r\n\r\n\tpublic void setName(String name) {\r\n\t\tthis.name = name;\r\n\t}\r\n\r\n\tpublic String getMail() {\r\n\t\treturn mail;\r\n\t}\r\n\r\n\tpublic void setMail(String mail) {\r\n\t\tthis.mail = mail;\r\n\t}\r\n\r\n\tpublic Integer getAge() {\r\n\t\treturn age;\r\n\t}\r\n\r\n\tpublic void setAge(Integer age) {\r\n\t\tthis.age = age;\r\n\t}\r\n\r\n\tpublic String getMemo() {\r\n\t\treturn memo;\r\n\t}\r\n\r\n\tpublic void setMemo(String memo) {\r\n\t\tthis.memo = memo;\r\n\t}\r\n\r\n}\r\n<\/pre>\n<p>MyData \u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3092\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u683c\u7d0d\u3059\u308b\u305f\u3081\u306e\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u3092\u5b9a\u7fa9\u3059\u308b\u3002<br \/>\nJpaRepository\u3092\u7d99\u627f\u3057\u3066\u5b9a\u7fa9\u3059\u308b\u3002<br \/>\n\u30c6\u30ad\u30b9\u30c8\u3067\u306f\u65b0\u305f\u306b repositories \u30d1\u30c3\u30b1\u30fc\u30b8\u3092\u4f5c\u3063\u3066\u305d\u306e\u4e2d\u306b\u4f5c\u3063\u3066\u3044\u308b\u306e\u3067\u3001\u305d\u308c\u306b\u306a\u3089\u3046\u3002<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\npackage jp.abc.repositories;\r\n\r\nimport org.springframework.data.jpa.repository.JpaRepository;\r\nimport org.springframework.stereotype.Repository;\r\n\r\nimport jp.abc.MyData;\r\n\r\n@Repository\r\npublic interface MyDataRepository extends JpaRepository&lt;MyData, Long&gt; {\r\n\r\n}\r\n<\/pre>\n<p>MyData\u3092\u6271\u3046\u305f\u3081\u306b\u3001\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u3092\u65b0\u3057\u304f\u7528\u610f\u3059\u308b\u3002<\/p>\n<p>MyDataController<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\npackage jp.abc;\r\n\r\nimport org.springframework.beans.factory.annotation.Autowired;\r\nimport org.springframework.stereotype.Controller;\r\nimport org.springframework.web.bind.annotation.RequestMapping;\r\nimport org.springframework.web.servlet.ModelAndView;\r\n\r\nimport jp.abc.repositories.MyDataRepository;\r\n\r\n@Controller\r\npublic class MyDataController {\r\n\r\n\t@Autowired\r\n\tprivate MyDataRepository repository;\r\n\r\n\t@RequestMapping(&quot;\/mydata&quot;)\r\n\tpublic ModelAndView index(ModelAndView mav) {\r\n\t\tmav.setViewName(&quot;mydata&quot;);\r\n\t\tmav.addObject(&quot;msg&quot;, &quot;this is sample content.&quot;);\r\n\t\tIterable&lt;MyData&gt; list = repository.findAll();\r\n\t\tmav.addObject(&quot;data&quot;, list);\r\n\t\treturn mav;\r\n\t}\r\n}\r\n<\/pre>\n<p>\u65b0\u305f\u306b mydata.html \u3092\u4f5c\u6210\u3059\u308b\u3002<\/p>\n<p>mydata.html<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;top page&lt;\/title&gt;\r\n&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text\/html; charset=UTF-8&quot; \/&gt;\r\n&lt;style type=&quot;text\/css&quot;&gt;\r\nh1 {\r\n  font-size: 18pt;\r\n  font-weight: bold;\r\n  color: gray;\r\n}\r\nbody {\r\n  font-size: 13pt;\r\n  color: gray;\r\n  margin: 5px 25px;\r\n}\r\npre {\r\n  border: solid 3px #ddd;\r\n  padding: 10px;\r\n}\r\n&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;h1&gt;MyData page&lt;\/h1&gt;\r\n&lt;pre th:text=&quot;${data}&quot;&gt;&lt;\/pre&gt;\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<h3>\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u306eCRUD<\/h3>\n<p>\u30d5\u30a9\u30fc\u30e0\u3067\u30c7\u30fc\u30bf\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306b\u3001HTML\u306b\u5165\u529b\u30d5\u30a9\u30fc\u30e0\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;top page&lt;\/title&gt;\r\n&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text\/html; charset=UTF-8&quot; \/&gt;\r\n&lt;style type=&quot;text\/css&quot;&gt;\r\nh1 {\r\n  font-size: 18pt;\r\n  font-weight: bold;\r\n  color: gray;\r\n}\r\nbody {\r\n  font-size: 13pt;\r\n  color: gray;\r\n  margin: 5px 25px;\r\n}\r\npre {\r\n  border: solid 3px #ddd;\r\n  padding: 10px;\r\n}\r\ntr {\r\n  margin: 5px;\r\n}\r\nth {\r\n  padding: 5px;\r\n  color: white;\r\n  background: darkgray;\r\n}\r\ntd {\r\n  padding: 5px;\r\n  color: black;\r\n  background: #f0f0f0;\r\n}\r\n&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;h1&gt;MyData page&lt;\/h1&gt;\r\n\r\n&lt;form method=&quot;post&quot; action=&quot;\/mydata&quot; th:object=&quot;${formModel}&quot;&gt;\r\n  &lt;table&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;name&quot;&gt;\u540d\u524d&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;name&quot; th:value=&quot;*{name}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;age&quot;&gt;\u5e74\u9f62&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;age&quot; th:value=&quot;*{age}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;mail&quot;&gt;\u30e1\u30fc\u30eb&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;mail&quot; th:value=&quot;*{mail}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;memo&quot;&gt;\u30e1\u30e2&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;textarea name=&quot;memo&quot; th:value=&quot;*{memo}&quot; rows=&quot;5&quot; cols=&quot;20&quot;&gt;&lt;\/textarea&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;submit&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n  &lt;\/table&gt;\r\n&lt;\/form&gt;\r\n\r\n&lt;hr \/&gt;\r\n&lt;table&gt;\r\n  &lt;tr&gt;\r\n    &lt;th&gt;ID&lt;\/th&gt;&lt;th&gt;\u540d\u524d&lt;\/th&gt;\r\n  &lt;\/tr&gt;\r\n  &lt;tr th:each=&quot;obj : ${datalist}&quot;&gt;\r\n    &lt;td th:text=&quot;${obj.id}&quot;&gt;&lt;\/td&gt;\r\n    &lt;td th:text=&quot;${obj.name}&quot;&gt;&lt;\/td&gt;\r\n  &lt;\/tr&gt;\r\n&lt;\/table&gt;\r\n\r\n\r\n&lt;pre th:text=&quot;${data}&quot;&gt;&lt;\/pre&gt;\r\n\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u3092\u5909\u66f4\u3059\u308b\u3002<br \/>\nGET\u30e1\u30bd\u30c3\u30c9\u3068POST\u30e1\u30bd\u30c3\u30c9\u3067\u5225\u306e\u51e6\u7406\u3092\u3084\u308a\u305f\u3044\u306e\u3067\u3001\uff08Java\u30af\u30e9\u30b9\u306e\uff09\u30e1\u30bd\u30c3\u30c9\u3092\u5206\u3051\u308b\u3002<br \/>\n\u305d\u306e\u305f\u3081\u306b\u3001@RequestMapping \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u3067 RequestMethod\u3092\u6307\u5b9a\u3059\u308b\u3002<br \/>\nHTML\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30d5\u30a9\u30fc\u30e0\u304b\u3089\u6e21\u3055\u308c\u308b\u30c7\u30fc\u30bf\u306f\u3001@ModelAttribute \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3067\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u540d\u3092\u6307\u5b9a\u3059\u308b\u3002<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\npackage jp.abc;\r\n\r\nimport org.springframework.beans.factory.annotation.Autowired;\r\nimport org.springframework.stereotype.Controller;\r\nimport org.springframework.web.bind.annotation.ModelAttribute;\r\nimport org.springframework.web.bind.annotation.RequestMapping;\r\nimport org.springframework.web.bind.annotation.RequestMethod;\r\nimport org.springframework.web.servlet.ModelAndView;\r\n\r\nimport jp.abc.repositories.MyDataRepository;\r\n\r\n@Controller\r\npublic class MyDataController {\r\n\r\n\t@Autowired\r\n\tprivate MyDataRepository repository;\r\n\r\n\t@RequestMapping(value = &quot;\/mydata&quot;, method = RequestMethod.GET)\r\n\tpublic ModelAndView index(\r\n\t\t\t@ModelAttribute(&quot;formModel&quot;) MyData mydata,\r\n\t\t\tModelAndView mav) {\r\n\t\tmav.setViewName(&quot;mydata&quot;);\r\n\t\tmav.addObject(&quot;msg&quot;, &quot;this is sample content.&quot;);\r\n\t\tIterable&lt;MyData&gt; list = repository.findAll();\r\n\t\tmav.addObject(&quot;datalist&quot;, list);\r\n\t\tmav.addObject(&quot;data&quot;, list);\r\n\t\treturn mav;\r\n\t}\r\n\r\n\t@RequestMapping(value = &quot;\/mydata&quot;, method = RequestMethod.POST)\r\n\tpublic ModelAndView form(\r\n\t\t\t@ModelAttribute(&quot;formModel&quot;) MyData mydata,\r\n\t\t\tModelAndView mav) {\r\n\t\trepository.saveAndFlush(mydata);\r\n\t\treturn new ModelAndView(&quot;redirect:\/mydata&quot;);\r\n\t}\r\n}\r\n<\/pre>\n<p>MyData\u3092\u7de8\u96c6\u3059\u308b\u305f\u3081\u306eHTML\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8 edit.html \u3092\u4f5c\u6210\u3059\u308b\u3002<br \/>\nmydata.html \u3068\u307b\u307c\u540c\u3058\u306a\u306e\u3067\u3001mydata.html \u3092\u30b3\u30d4\u30fc\u3057\u3066\u30d5\u30a1\u30a4\u30eb\u540d\u3092 edit.html \u306b\u3057\u3066\u4fdd\u5b58\u3059\u308b\u3002<\/p>\n<pre class=\"brush: xml; title: ; notranslate\" title=\"\">\r\n&lt;!DOCTYPE html&gt;\r\n&lt;html xmlns:th=&quot;http:\/\/www.thymeleaf.org&quot;&gt;\r\n&lt;head&gt;\r\n&lt;meta charset=&quot;UTF-8&quot;&gt;\r\n&lt;title&gt;top page&lt;\/title&gt;\r\n&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text\/html; charset=UTF-8&quot; \/&gt;\r\n&lt;style type=&quot;text\/css&quot;&gt;\r\nh1 {\r\n  font-size: 18pt;\r\n  font-weight: bold;\r\n  color: gray;\r\n}\r\nbody {\r\n  font-size: 13pt;\r\n  color: gray;\r\n  margin: 5px 25px;\r\n}\r\npre {\r\n  border: solid 3px #ddd;\r\n  padding: 10px;\r\n}\r\ntr {\r\n  margin: 5px;\r\n}\r\nth {\r\n  padding: 5px;\r\n  color: white;\r\n  background: darkgray;\r\n}\r\ntd {\r\n  padding: 5px;\r\n  color: black;\r\n  background: #f0f0f0;\r\n}\r\n&lt;\/style&gt;\r\n&lt;\/head&gt;\r\n&lt;body&gt;\r\n\r\n&lt;h1&gt;MyData edit page&lt;\/h1&gt;\r\n\r\n&lt;form method=&quot;post&quot; action=&quot;\/edit&quot; th:object=&quot;${formModel}&quot;&gt;\r\n  &lt;input type=&quot;hidden&quot; name=&quot;id&quot; th:value=&quot;*{id}&quot; \/&gt;\r\n  &lt;table&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;name&quot;&gt;\u540d\u524d&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;name&quot; th:value=&quot;*{name}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;age&quot;&gt;\u5e74\u9f62&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;age&quot; th:value=&quot;*{age}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;mail&quot;&gt;\u30e1\u30fc\u30eb&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;mail&quot; th:value=&quot;*{mail}&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;label for=&quot;memo&quot;&gt;\u30e1\u30e2&lt;\/label&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;textarea name=&quot;memo&quot; th:value=&quot;*{memo}&quot; rows=&quot;5&quot; cols=&quot;20&quot;&gt;&lt;\/textarea&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n    &lt;tr&gt;\r\n      &lt;td&gt;&lt;\/td&gt;\r\n      &lt;td&gt;&lt;input type=&quot;submit&quot; \/&gt;&lt;\/td&gt;\r\n    &lt;\/tr&gt;\r\n  &lt;\/table&gt;\r\n&lt;\/form&gt;\r\n\r\n\r\n&lt;\/body&gt;\r\n&lt;\/html&gt;\r\n<\/pre>\n<p>\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u306b\u521d\u671f\u30c7\u30fc\u30bf\u3092\u767b\u9332\u3059\u308b\u30e1\u30bd\u30c3\u30c9\u3092\u8ffd\u52a0\u3059\u308b\u3002<br \/>\n@PostConstruct \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3059\u308b\u3068\u3001\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u304c\u547c\u3070\u308c\u305f\u76f4\u5f8c\u306b\u3001\u3053\u306e\u30e1\u30bd\u30c3\u30c9\u304c\u547c\u3073\u51fa\u3055\u308c\u308b\u3002<\/p>\n<pre class=\"brush: java; title: ; notranslate\" title=\"\">\r\n\t@PostConstruct\r\n\tpublic void init() {\r\n\t\tMyData d1 = new MyData();\r\n\t\td1.setName(&quot;tuyano&quot;);\r\n\t\td1.setAge(123);\r\n\t\td1.setMail(&quot;syoda@tuyano.com&quot;);\r\n\t\td1.setMemo(&quot;this is data!&quot;);\r\n\t\trepository.saveAndFlush(d1);\r\n\t\tMyData d2 = new MyData();\r\n\t\td2.setName(&quot;hanako&quot;);\r\n\t\td2.setAge(15);\r\n\t\td2.setMail(&quot;hanako@flower.com&quot;);\r\n\t\td2.setMemo(&quot;this is data!&quot;);\r\n\t\trepository.saveAndFlush(d2);\r\n\t\tMyData d3 = new MyData();\r\n\t\td3.setName(&quot;sachiko&quot;);\r\n\t\td3.setAge(37);\r\n\t\td3.setMail(&quot;sachiko@happy&quot;);\r\n\t\td3.setMemo(&quot;this is data!&quot;);\r\n\t\trepository.saveAndFlush(d3);\r\n\t}\r\n<\/pre>\n\n<div style=\"font-size: 0px; height: 0px; line-height: 0px; margin: 0; padding: 0; clear: both;\"><\/div>","protected":false},"excerpt":{"rendered":"<p>\u30e2\u30c7\u30eb\u3068\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9 \u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306e\u30c6\u30fc\u30d6\u30eb\u306b\u5bfe\u5fdc\u3059\u308bPOJO\u30af\u30e9\u30b9\u3068\u3057\u3066MyData\u3092\u5b9a\u7fa9\u3059\u308b\u3002 MyData\u30af\u30e9\u30b9\u306b\u306f\u3001\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3067\u3042\u308b\u3053\u3068\u3092\u793a\u3059\u305f\u3081\u306b @Entity \u30a2\u30ce\u30c6\u30fc\u30b7\u30e7\u30f3\u3092\u3064\u3051\u308b\u3002 MyData \u30a8\u30f3 &hellip; <a href=\"https:\/\/2019se3.satoshis.jp\/?p=159\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;6\u670814\u65e5&#8221; \u306e<\/span>\u7d9a\u304d\u3092\u8aad\u3080<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1,3],"tags":[],"_links":{"self":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/159"}],"collection":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=159"}],"version-history":[{"count":9,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/159\/revisions"}],"predecessor-version":[{"id":173,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=\/wp\/v2\/posts\/159\/revisions\/173"}],"wp:attachment":[{"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=159"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=159"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2019se3.satoshis.jp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=159"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}