{"id":33241,"date":"2024-11-01T09:14:48","date_gmt":"2024-11-01T09:14:48","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33241"},"modified":"2024-11-01T11:28:18","modified_gmt":"2024-11-01T11:28:18","slug":"spring-boot-backend-development-course-creating-elastic-beanstalk-service","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33241\/","title":{"rendered":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service"},"content":{"rendered":"<p><body><\/p>\n<p>The reason Spring Boot is gaining attention is due to its simplicity and intuitiveness. Today, many developers choose this framework to quickly build applications. This article will explain in detail how to build a backend service on Elastic Beanstalk using Spring Boot.<\/p>\n<h2>1. What is Spring Boot?<\/h2>\n<p>Spring Boot is a lightweight framework based on the Spring framework, aimed at rapid development and configuration of applications. It has the following features:<\/p>\n<ul>\n<li>Auto Configuration: Spring Boot automatically performs various configurations at the application startup.<\/li>\n<li>Standalone: You can write standalone applications, which can run on an embedded server.<\/li>\n<li>Production Ready: It provides the necessary elements for deploying to a production environment through various features.<\/li>\n<\/ul>\n<h2>2. What is Elastic Beanstalk?<\/h2>\n<p>Elastic Beanstalk is a platform provided by Amazon Web Services (AWS) that helps simplify the deployment, operation, and scaling of applications. Its main features include:<\/p>\n<ul>\n<li>Auto Scaling: Automatically scales instances up or down based on app traffic.<\/li>\n<li>Monitoring Tools: Provides tools to monitor the performance and status of applications in real-time.<\/li>\n<li>Support for Various Languages: Supports multiple programming languages such as Java, Python, Node.js, PHP, and more.<\/li>\n<\/ul>\n<h2>3. Environment Setup<\/h2>\n<p>Now, let&#8217;s set up the tools and environment needed to create a Spring Boot application.<\/p>\n<h3>3.1. Install Required Tools<\/h3>\n<ul>\n<li><strong>Java Development Kit (JDK)<\/strong>: You must install at least JDK version 8.<\/li>\n<li><strong>Build Tool<\/strong>: You can use Maven or Gradle. This tutorial will use Maven.<\/li>\n<li><strong>IDE<\/strong>: It is recommended to use an integrated development environment like IntelliJ IDEA or Eclipse.<\/li>\n<\/ul>\n<h3>3.2. Create AWS Account<\/h3>\n<p>To use AWS services, you need an AWS account. After creating an account, you can access the Elastic Beanstalk service.<\/p>\n<h2>4. Create Spring Boot Project<\/h2>\n<p>Now, let&#8217;s create a Spring Boot project. You can easily create a project using Spring Initializr.<\/p>\n<h3>4.1. Using Spring Initializr<\/h3>\n<p>Follow the steps below to create a project in Spring Initializr:<\/p>\n<ol>\n<li>Visit <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a>.<\/li>\n<li>Enter the following information:<\/li>\n<ul>\n<li><strong>Project<\/strong>: Maven Project<\/li>\n<li><strong>Language<\/strong>: Java<\/li>\n<li><strong>Spring Boot Version<\/strong>: 2.x.x (choose the latest stable version)<\/li>\n<li><strong>Project Metadata<\/strong>: Enter Group, Artifact, Name, Description, Package Name, etc.<\/li>\n<li><strong>Dependencies<\/strong>: Select Spring Web, Spring Data JPA, H2 Database, etc.<\/li>\n<\/ul>\n<li>Click the Generate button to download the ZIP file.<\/li>\n<li>Open the downloaded file in your IDE to start the project.<\/li>\n<\/ol>\n<h2>5. Application Implementation<\/h2>\n<p>After the project is created, let&#8217;s implement a simple RESTful API. Here, we will build an API to handle user information.<\/p>\n<h3>5.1. Create Entity Class<\/h3>\n<p>Create a <code>User<\/code> entity class to store user information.<\/p>\n<pre><code>package com.example.demo.model;\n\nimport javax.persistence.Entity;\nimport javax.persistence.GeneratedValue;\nimport javax.persistence.GenerationType;\nimport javax.persistence.Id;\n\n@Entity\npublic class User {\n    @Id\n    @GeneratedValue(strategy = GenerationType.AUTO)\n    private Long id;\n    private String name;\n    private String email;\n\n    \/\/ Getters and Setters\n}<\/code><\/pre>\n<h3>5.2. Create Repository Interface<\/h3>\n<p>Create a <code>UserRepository<\/code> interface using Spring Data JPA.<\/p>\n<pre><code>package com.example.demo.repository;\n\nimport org.springframework.data.jpa.repository.JpaRepository;\nimport com.example.demo.model.User;\n\npublic interface UserRepository extends JpaRepository<User, Long> {\n}<\/code><\/pre>\n<h3>5.3. Create Service Class<\/h3>\n<p>Create a <code>UserService<\/code> class to handle business logic.<\/p>\n<pre><code>package com.example.demo.service;\n\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.stereotype.Service;\nimport com.example.demo.model.User;\nimport com.example.demo.repository.UserRepository;\n\nimport java.util.List;\n\n@Service\npublic class UserService {\n    @Autowired\n    private UserRepository userRepository;\n\n    public List<User> getAllUsers() {\n        return userRepository.findAll();\n    }\n\n    public User createUser(User user) {\n        return userRepository.save(user);\n    }\n}<\/code><\/pre>\n<h3>5.4. Create Controller Class<\/h3>\n<p>Create a <code>UserController<\/code> class to handle API endpoints.<\/p>\n<pre><code>package com.example.demo.controller;\n\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.web.bind.annotation.*;\nimport com.example.demo.model.User;\nimport com.example.demo.service.UserService;\n\nimport java.util.List;\n\n@RestController\n@RequestMapping(\"\/api\/users\")\npublic class UserController {\n    @Autowired\n    private UserService userService;\n\n    @GetMapping\n    public List<User> getAllUsers() {\n        return userService.getAllUsers();\n    }\n\n    @PostMapping\n    public User createUser(@RequestBody User user) {\n        return userService.createUser(user);\n    }\n}<\/code><\/pre>\n<h2>6. Application Testing<\/h2>\n<p>Test the application locally. You can run the application on Spring Boot&#8217;s embedded server and use a client like Postman to test the API.<\/p>\n<pre><code>mvn spring-boot:run<\/code><\/pre>\n<h2>7. Deploying to Elastic Beanstalk<\/h2>\n<p>Now, let&#8217;s deploy the well-functioning application to AWS Elastic Beanstalk.<\/p>\n<h3>7.1. Install AWS Elastic Beanstalk CLI<\/h3>\n<p>Install the AWS Elastic Beanstalk CLI to easily manage deployments. Please refer to the official documentation for installation.<\/p>\n<h3>7.2. Project Configuration<\/h3>\n<p>Create an Elastic Beanstalk environment using the following command from the root directory of the project.<\/p>\n<pre><code>eb init -p java-11 my-spring-boot-app<\/code><\/pre>\n<p>After configuring the environment, deploy the application.<\/p>\n<pre><code>eb create my-spring-boot-env\neb deploy<\/code><\/pre>\n<h2>8. Monitoring and Logging<\/h2>\n<p>AWS Elastic Beanstalk provides features to monitor the status of your application and manage logs. Check this on the AWS Management Console.<\/p>\n<h3>8.1. Using CloudWatch<\/h3>\n<p>You can use CloudWatch to monitor the performance and traffic of your application. Set appropriate alerts to detect problems early.<\/p>\n<h2>9. Conclusion<\/h2>\n<p>In this tutorial, we learned how to build a simple RESTful API using Spring Boot and deploy it on AWS Elastic Beanstalk. By leveraging these technologies, it becomes easier to manage and deploy more complex applications.<\/p>\n<p>Use this tutorial as a reference to develop amazing backend services. If you have any additional questions or need help, feel free to leave a comment!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>The reason Spring Boot is gaining attention is due to its simplicity and intuitiveness. Today, many developers choose this framework to quickly build applications. This article will explain in detail how to build a backend service on Elastic Beanstalk using Spring Boot. 1. What is Spring Boot? Spring Boot is a lightweight framework based on &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33241\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Creating Elastic Beanstalk Service&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[131],"tags":[],"class_list":["post-33241","post","type-post","status-publish","format-standard","hentry","category-spring-boot-backend-development"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/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:\/\/atmokpo.com\/w\/33241\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"The reason Spring Boot is gaining attention is due to its simplicity and intuitiveness. Today, many developers choose this framework to quickly build applications. This article will explain in detail how to build a backend service on Elastic Beanstalk using Spring Boot. 1. What is Spring Boot? Spring Boot is a lightweight framework based on &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Creating Elastic Beanstalk Service&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33241\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:18+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service\",\"datePublished\":\"2024-11-01T09:14:48+00:00\",\"dateModified\":\"2024-11-01T11:28:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/\"},\"wordCount\":637,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33241\/\",\"name\":\"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:48+00:00\",\"dateModified\":\"2024-11-01T11:28:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33241\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33241\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","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:\/\/atmokpo.com\/w\/33241\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"The reason Spring Boot is gaining attention is due to its simplicity and intuitiveness. Today, many developers choose this framework to quickly build applications. This article will explain in detail how to build a backend service on Elastic Beanstalk using Spring Boot. 1. What is Spring Boot? Spring Boot is a lightweight framework based on &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service\"","og_url":"https:\/\/atmokpo.com\/w\/33241\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:48+00:00","article_modified_time":"2024-11-01T11:28:18+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/33241\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33241\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service","datePublished":"2024-11-01T09:14:48+00:00","dateModified":"2024-11-01T11:28:18+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33241\/"},"wordCount":637,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33241\/","url":"https:\/\/atmokpo.com\/w\/33241\/","name":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:48+00:00","dateModified":"2024-11-01T11:28:18+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33241\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33241\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33241\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Creating Elastic Beanstalk Service"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33241","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=33241"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33241\/revisions"}],"predecessor-version":[{"id":33242,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33241\/revisions\/33242"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33241"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33241"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33241"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}