{"id":1316,"date":"2022-04-12T17:58:01","date_gmt":"2022-04-12T08:58:01","guid":{"rendered":"https:\/\/technologyagency.net\/wordpress\/?p=1316"},"modified":"2022-04-22T11:34:00","modified_gmt":"2022-04-22T02:34:00","slug":"spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99","status":"publish","type":"post","link":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/","title":{"rendered":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">\u4f9d\u5b58\u95a2\u4fc2<\/h2>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: groovy; title: ; notranslate\" title=\"\">\nimplementation &#039;org.hibernate.search:hibernate-search-mapper-orm:6.1.4.Final&#039;\nimplementation &#039;org.hibernate.search:hibernate-search-backend-lucene:6.1.4.Final&#039;\n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">\u5b9f\u88c5<\/h2>\n\n\n\n<p>Entity\u30af\u30e9\u30b9\u306b@Indexed\u3001\u30e1\u30bd\u30c3\u30c9\u306b@FullTextField\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n@Entity\n@Table(name = &quot;novel&quot;)\n@Indexed\npublic class Novel implements Serializable {\n\n...\n\n    @FullTextField\n    private String title;\n<\/pre><\/div>\n\n\n<p>Service\u30af\u30e9\u30b9\u306b\u691c\u7d22\u51e6\u7406\u306e\u30ed\u30b8\u30c3\u30af\u3092\u8ffd\u52a0\u3059\u308b\u3002<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n@Service\npublic class NovelService {\n\n...\n\n    @Transactional\n    public Stream&lt;Novel&gt; searchIndex(final String searchParameters) {\n        SearchSession searchSession = Search.session(entityManager);\n\n        SearchResult&lt;Novel&gt; result = searchSession.search(Novel.class)\n                .where(f -&gt; f.bool()\n                        .must(f.match()\n                                .field(&quot;title&quot;)\n                                .matching(&quot;\u7570\u4e16\u754c&quot;)))\n                .fetchAll();\n        return result.hits().stream();\n    }\n<\/pre><\/div>\n\n\n<p>\u5b9f\u969b\u306b\u52d5\u304f\u30b3\u30fc\u30c9\u306fGitHub\u306b\u516c\u958b\u4e88\u5b9a\u3002\u516c\u958b\u5b8c\u4e86\u3057\u305f\u3089\u3001\u4e0b\u8a18\u306b\u8ffd\u8a18\u3059\u308b\u3002<\/p>\n\n\n\n<p>\u203b4\/22\u8ffd\u8a18<br><a href=\"https:\/\/github.com\/hide6644\/crawler-api\/blob\/master\/src\/main\/java\/crawlerapi\/service\/NovelService.java\">NovelService.java<\/a> &#8211; github<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\npublic Stream&lt;Novel&gt; searchIndex(final String searchParameters) {\n    SearchSession searchSession = Search.session(entityManager);\n    String operationSetExper = String.join(&quot;|&quot;, SearchOperation.SIMPLE_OPERATION_SET);\n    Pattern pattern = Pattern.compile(\n            &quot;(\\\\p{Punct}?)(\\\\w+?)(&quot; + operationSetExper + &quot;)(\\\\p{Punct}?)(\\\\w+?)(\\\\p{Punct}?),&quot;,\n            Pattern.UNICODE_CHARACTER_CLASS);\n    Matcher matcher = pattern.matcher(searchParameters + &quot;,&quot;);\n\n    SearchResult&lt;Novel&gt; result = searchSession.search(Novel.class)\n            .where(f -&gt; f.bool(b -&gt; {\n                b.must(f.matchAll());\n                while (matcher.find()) {\n                    b.must(f.match().field(matcher.group(KEY))\n                            .matching(matcher.group(VALUE)));\n                }\n            }))\n            .fetchAll();\n\n    return result.hits().stream();\n}\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>\u4f9d\u5b58\u95a2\u4fc2 \u5b9f\u88c5 Entity\u30af\u30e9\u30b9\u306b@Indexed\u3001\u30e1\u30bd\u30c3\u30c9\u306b@FullTextField\u3092\u8ffd\u52a0\u3059\u308b\u3002 Service\u30af\u30e9\u30b9\u306b\u691c\u7d22\u51e6\u7406\u306e\u30ed\u30b8\u30c3\u30af\u3092\u8ffd\u52a0\u3059\u308b\u3002 \u5b9f\u969b\u306b\u52d5\u304f\u30b3\u30fc\u30c9\u306fGitHub\u306b\u516c\u958b\u4e88\u5b9a\u3002\u516c\u958b\u5b8c\u4e86\u3057\u305f\u3089\u3001\u4e0b &hellip; <a href=\"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/\" class=\"more-link\"><span class=\"screen-reader-text\">&#8220;Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059&#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":{"footnotes":""},"categories":[4],"tags":[31,19],"class_list":["post-1316","post","type-post","status-publish","format-standard","hentry","category-java","tag-hibernate-search","tag-spring-boot"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.<\/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:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6\u3067hibernate-search-6\u3092\u52d5\u304b\u3059\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.\" \/>\n<meta property=\"og:description\" content=\"\u4f9d\u5b58\u95a2\u4fc2 \u5b9f\u88c5 Entity\u30af\u30e9\u30b9\u306b@Indexed\u3001\u30e1\u30bd\u30c3\u30c9\u306b@FullTextField\u3092\u8ffd\u52a0\u3059\u308b\u3002 Service\u30af\u30e9\u30b9\u306b\u691c\u7d22\u51e6\u7406\u306e\u30ed\u30b8\u30c3\u30af\u3092\u8ffd\u52a0\u3059\u308b\u3002 \u5b9f\u969b\u306b\u52d5\u304f\u30b3\u30fc\u30c9\u306fGitHub\u306b\u516c\u958b\u4e88\u5b9a\u3002\u516c\u958b\u5b8c\u4e86\u3057\u305f\u3089\u3001\u4e0b &hellip; &quot;Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059&quot; \u306e\u7d9a\u304d\u3092\u8aad\u3080\" \/>\n<meta property=\"og:url\" content=\"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6\u3067hibernate-search-6\u3092\u52d5\u304b\u3059\/\" \/>\n<meta property=\"og:site_name\" content=\"I want to lead an easy life.\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-12T08:58:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-22T02:34:00+00:00\" \/>\n<meta name=\"author\" content=\"hide6644\" \/>\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=\"hide6644\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/\"},\"author\":{\"name\":\"hide6644\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/#\\\/schema\\\/person\\\/a25355beaa102da2b2d79b00f5865b63\"},\"headline\":\"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059\",\"datePublished\":\"2022-04-12T08:58:01+00:00\",\"dateModified\":\"2022-04-22T02:34:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/\"},\"wordCount\":13,\"commentCount\":0,\"keywords\":[\"Hibernate Search\",\"Spring Boot\"],\"articleSection\":[\"Java\"],\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/\",\"url\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/\",\"name\":\"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/#website\"},\"datePublished\":\"2022-04-12T08:58:01+00:00\",\"dateModified\":\"2022-04-22T02:34:00+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/#\\\/schema\\\/person\\\/a25355beaa102da2b2d79b00f5865b63\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/2022\\\/04\\\/12\\\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/#website\",\"url\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/\",\"name\":\"I want to lead an easy life.\",\"description\":\"Technical Notes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/#\\\/schema\\\/person\\\/a25355beaa102da2b2d79b00f5865b63\",\"name\":\"hide6644\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g\",\"caption\":\"hide6644\"},\"url\":\"https:\\\/\\\/technologyagency.net\\\/wordpress\\\/author\\\/hide6644\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.","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:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6\u3067hibernate-search-6\u3092\u52d5\u304b\u3059\/","og_locale":"ja_JP","og_type":"article","og_title":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.","og_description":"\u4f9d\u5b58\u95a2\u4fc2 \u5b9f\u88c5 Entity\u30af\u30e9\u30b9\u306b@Indexed\u3001\u30e1\u30bd\u30c3\u30c9\u306b@FullTextField\u3092\u8ffd\u52a0\u3059\u308b\u3002 Service\u30af\u30e9\u30b9\u306b\u691c\u7d22\u51e6\u7406\u306e\u30ed\u30b8\u30c3\u30af\u3092\u8ffd\u52a0\u3059\u308b\u3002 \u5b9f\u969b\u306b\u52d5\u304f\u30b3\u30fc\u30c9\u306fGitHub\u306b\u516c\u958b\u4e88\u5b9a\u3002\u516c\u958b\u5b8c\u4e86\u3057\u305f\u3089\u3001\u4e0b &hellip; \"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059\" \u306e\u7d9a\u304d\u3092\u8aad\u3080","og_url":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6\u3067hibernate-search-6\u3092\u52d5\u304b\u3059\/","og_site_name":"I want to lead an easy life.","article_published_time":"2022-04-12T08:58:01+00:00","article_modified_time":"2022-04-22T02:34:00+00:00","author":"hide6644","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"hide6644","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/#article","isPartOf":{"@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/"},"author":{"name":"hide6644","@id":"https:\/\/technologyagency.net\/wordpress\/#\/schema\/person\/a25355beaa102da2b2d79b00f5865b63"},"headline":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059","datePublished":"2022-04-12T08:58:01+00:00","dateModified":"2022-04-22T02:34:00+00:00","mainEntityOfPage":{"@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/"},"wordCount":13,"commentCount":0,"keywords":["Hibernate Search","Spring Boot"],"articleSection":["Java"],"inLanguage":"ja","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/","url":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/","name":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059 - I want to lead an easy life.","isPartOf":{"@id":"https:\/\/technologyagency.net\/wordpress\/#website"},"datePublished":"2022-04-12T08:58:01+00:00","dateModified":"2022-04-22T02:34:00+00:00","author":{"@id":"https:\/\/technologyagency.net\/wordpress\/#\/schema\/person\/a25355beaa102da2b2d79b00f5865b63"},"breadcrumb":{"@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/technologyagency.net\/wordpress\/2022\/04\/12\/spring-boot-2-6%e3%81%a7hibernate-search-6%e3%82%92%e5%8b%95%e3%81%8b%e3%81%99\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/technologyagency.net\/wordpress\/"},{"@type":"ListItem","position":2,"name":"Spring Boot 2.6\u3067Hibernate Search 6\u3092\u52d5\u304b\u3059"}]},{"@type":"WebSite","@id":"https:\/\/technologyagency.net\/wordpress\/#website","url":"https:\/\/technologyagency.net\/wordpress\/","name":"I want to lead an easy life.","description":"Technical Notes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/technologyagency.net\/wordpress\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/technologyagency.net\/wordpress\/#\/schema\/person\/a25355beaa102da2b2d79b00f5865b63","name":"hide6644","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/secure.gravatar.com\/avatar\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a5df48aece572798f5aacd2dd90331e28bd249c13f736badb5116e3d43c5d5e9?s=96&d=mm&r=g","caption":"hide6644"},"url":"https:\/\/technologyagency.net\/wordpress\/author\/hide6644\/"}]}},"_links":{"self":[{"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/posts\/1316","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/comments?post=1316"}],"version-history":[{"count":6,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/posts\/1316\/revisions"}],"predecessor-version":[{"id":1383,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/posts\/1316\/revisions\/1383"}],"wp:attachment":[{"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/media?parent=1316"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/categories?post=1316"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/technologyagency.net\/wordpress\/wp-json\/wp\/v2\/tags?post=1316"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}