{"id":32969,"date":"2024-11-01T09:12:49","date_gmt":"2024-11-01T09:12:49","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32969"},"modified":"2024-11-01T11:29:33","modified_gmt":"2024-11-01T11:29:33","slug":"spring-boot-backend-development-course-deploying-our-service-with-aws-services","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32969\/","title":{"rendered":"Spring Boot Backend Development Course, Deploying Our Service with AWS Services"},"content":{"rendered":"<p>In recent years, the Java-based framework Spring Boot has gained popularity in the field of backend development. Spring Boot focuses on simplifying configuration and enhancing productivity, helping developers build applications more quickly and efficiently. Additionally, advancements in cloud services have opened an era where we can easily deploy our services. In particular, AWS (Amazon Web Services) provides various cloud services and features to support the flexible operation of backend applications. This course will detail the process of developing a simple backend application using Spring Boot and deploying it to AWS.<\/p>\n<h2>1. Introduction to Spring Boot<\/h2>\n<p>Spring Boot has the motto of &#8216;doing a lot with minimal configuration&#8217;. Traditional Spring Framework required a lot of setup and configuration, but Spring Boot supports developers by automatically configuring these settings. As a result, we are provided with an environment where we can focus on business logic.<\/p>\n<ul>\n<li><strong>Features of Spring Boot<\/strong>\n<ul>\n<li>Autoconfiguration: Spring Boot provides most functionalities with its default configurations.<\/li>\n<li>Starter Dependencies: Provides necessary libraries as starter dependencies for easy use.<\/li>\n<li>Embedded Server: Reduces deployment complexity by including servers like Tomcat and Jetty.<\/li>\n<li>Production Ready: Spring Boot offers several features necessary for monitoring and management by default.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<h2>2. Setting Up the Spring Boot Development Environment<\/h2>\n<p>To develop a Spring Boot application, you must first have the Java Development Kit (JDK) installed. Also, IDEs (Integrated Development Environments) like IntelliJ IDEA, Eclipse, and VS Code are recommended. In this course, we will explain using IntelliJ IDEA as the basis.<\/p>\n<ol>\n<li><strong>Install JDK<\/strong>\n<p>After installing the JDK, set the JAVA_HOME environment variable. To download the latest version of the JDK, visit the Oracle official website or OpenJDK.<\/p>\n<\/li>\n<li><strong>Install IDE<\/strong>\n<p>Download and install IntelliJ IDEA. After installation, complete the basic settings.<\/p>\n<\/li>\n<li><strong>Create a Spring Boot Project<\/strong>\n<p>Run IntelliJ IDEA, select &#8220;New Project&#8221;, and choose &#8220;Spring Initializr&#8221; to create a new Spring Boot project.<\/p>\n<\/li>\n<\/ol>\n<h2>3. Configuring the Spring Boot Project<\/h2>\n<p>When creating a Spring Boot project, you can select the desired package structure and necessary dependencies. The commonly used dependencies are as follows:<\/p>\n<ul>\n<li>Spring Web: Library for developing RESTful APIs<\/li>\n<li>Spring Data JPA: Library for database integration<\/li>\n<li>H2 Database: In-memory database suitable for practice<\/li>\n<\/ul>\n<h3>3.1 Basic Application Configuration<\/h3>\n<p>After the project is created, you can open the <code>application.properties<\/code> file and add basic settings. For example, if you want to change the port number settings, you can set it as follows:<\/p>\n<pre><code>server.port=8080<\/code><\/pre>\n<h3>3.2 Create Entity Class<\/h3>\n<p>In this course, we will create a simple note (or to-do) management application. Let&#8217;s create the entity class as follows:<\/p>\n<pre><code>import javax.persistence.Entity;\nimport javax.persistence.GeneratedValue;\nimport javax.persistence.GenerationType;\nimport javax.persistence.Id;\n\n@Entity\npublic class Todo {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n    private String title;\n    private boolean completed;\n\n    \/\/ Getter and Setter methods\n}<\/code><\/pre>\n<h3>3.3 Create Repository Interface<\/h3>\n<p>Use Spring Data JPA to create a repository interface that can interact with the database:<\/p>\n<pre><code>import org.springframework.data.jpa.repository.JpaRepository;\n\npublic interface TodoRepository extends JpaRepository<Todo, Long> {\n}<\/code><\/pre>\n<h3>3.4 Create Service Class<\/h3>\n<p>Write a service class that will handle business logic:<\/p>\n<pre><code>import org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.stereotype.Service;\n\nimport java.util.List;\n\n@Service\npublic class TodoService {\n    @Autowired\n    private TodoRepository todoRepository;\n\n    public List<Todo> getAllTodos() {\n        return todoRepository.findAll();\n    }\n\n    public Todo createTodo(Todo todo) {\n        return todoRepository.save(todo);\n    }\n}<\/code><\/pre>\n<h3>3.5 Create REST API Controller<\/h3>\n<p>Finally, create a controller class that provides the REST API interface for this application:<\/p>\n<pre><code>import org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.http.ResponseEntity;\nimport org.springframework.web.bind.annotation.*;\n\nimport java.util.List;\n\n@RestController\n@RequestMapping(\"\/api\/todos\")\npublic class TodoController {\n    @Autowired\n    private TodoService todoService;\n\n    @GetMapping\n    public List<Todo> getAllTodos() {\n        return todoService.getAllTodos();\n    }\n\n    @PostMapping\n    public ResponseEntity<Todo> createTodo(@RequestBody Todo todo) {\n        return ResponseEntity.ok(todoService.createTodo(todo));\n    }\n}<\/code><\/pre>\n<h2>4. Deploying the Service to AWS<\/h2>\n<p>After developing the application, you prepare to deploy it to AWS. To deploy to AWS, you need an AWS account. After creating an account, log in to the AWS Management Console.<\/p>\n<h3>4.1 Using Elastic Beanstalk<\/h3>\n<p>AWS Elastic Beanstalk is a PaaS (Platform as a Service) that simplifies the deployment of web applications and services. You can deploy your application through the following steps:<\/p>\n<ol>\n<li><strong>Create Elastic Beanstalk Environment<\/strong>\n<p>Select Elastic Beanstalk in the AWS Management Console and click the &#8220;Create New Application&#8221; button. Enter the application name and description.<\/p>\n<\/li>\n<li><strong>Configure Environment<\/strong>\n<p>When configuring the environment, select &#8220;Web server environment&#8221; and choose &#8220;Java&#8221; as the platform. Options will be provided to upload the JAR file.<\/p>\n<\/li>\n<li><strong>Create Application JAR File<\/strong>\n<p>Build the project in IntelliJ IDEA to generate the JAR file. You can create it using the <code>mvn clean package<\/code> command.<\/p>\n<\/li>\n<li><strong>Upload JAR File<\/strong>\n<p>Return to the Elastic Beanstalk dashboard and upload the generated JAR file. Then click the &#8220;Create Environment&#8221; button to create the environment.<\/p>\n<\/li>\n<\/ol>\n<h3>4.2 Check Environment URL<\/h3>\n<p>Once the environment is created, you can access the application through the URL provided by AWS. Enter this URL in the browser to verify that the application is functioning correctly.<\/p>\n<h3>4.3 Integrating with the Database<\/h3>\n<p>In a production environment, it is common to manage the database using RDS (Amazon Relational Database Service). Let\u2019s explain how to set up RDS and connect the application to the database:<\/p>\n<ol>\n<li><strong>Create RDS Instance<\/strong>\n<p>In the RDS dashboard, click \u201cCreate database\u201d. Choose a database engine and complete the instance type and other settings.<\/p>\n<\/li>\n<li><strong>Set Security Group<\/strong>\n<p>Set the security group for the RDS instance to allow access from the application.<\/p>\n<\/li>\n<li><strong>Update Application Settings<\/strong>\n<p>Add the connection information for RDS to the application&#8217;s <code>application.properties<\/code> file:<\/p>\n<pre><code>spring.datasource.url=jdbc:mysql:\/\/<rds-endpoint>:<port>\/<dbname>\nspring.datasource.username=<username>\nspring.datasource.password=<password><\/password><\/username><\/dbname><\/port><\/rds-endpoint><\/code><\/pre>\n<\/li>\n<\/ol>\n<h2>5. Conclusion<\/h2>\n<p>In this course, we have explored how to develop and deploy a simple backend application using Spring Boot and AWS Elastic Beanstalk. Spring Boot provides a lot of convenience to developers, and AWS makes it easy to deploy developed applications. It will greatly help in building various services in real-world applications. I encourage you to continue learning more features and apply them in real business scenarios.<\/p>\n<h2>6. References<\/h2>\n<ul>\n<li><a href=\"https:\/\/spring.io\/projects\/spring-boot\">Official Spring Boot Documentation<\/a><\/li>\n<li><a href=\"https:\/\/aws.amazon.com\/elasticbeanstalk\/\">Official AWS Elastic Beanstalk Guide<\/a><\/li>\n<li><a href=\"https:\/\/docs.aws.amazon.com\/AmazonRDS\/latest\/UserGuide\/CHAP_GettingStarted.html\">AWS RDS Getting Started Guide<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>In recent years, the Java-based framework Spring Boot has gained popularity in the field of backend development. Spring Boot focuses on simplifying configuration and enhancing productivity, helping developers build applications more quickly and efficiently. Additionally, advancements in cloud services have opened an era where we can easily deploy our services. In particular, AWS (Amazon Web &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32969\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Deploying Our Service with AWS Services&#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-32969","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, Deploying Our Service with AWS Services - \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\/32969\/\" \/>\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, Deploying Our Service with AWS Services - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In recent years, the Java-based framework Spring Boot has gained popularity in the field of backend development. Spring Boot focuses on simplifying configuration and enhancing productivity, helping developers build applications more quickly and efficiently. Additionally, advancements in cloud services have opened an era where we can easily deploy our services. In particular, AWS (Amazon Web &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Deploying Our Service with AWS Services&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32969\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:12:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:29:33+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=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Deploying Our Service with AWS Services\",\"datePublished\":\"2024-11-01T09:12:49+00:00\",\"dateModified\":\"2024-11-01T11:29:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/\"},\"wordCount\":838,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32969\/\",\"name\":\"Spring Boot Backend Development Course, Deploying Our Service with AWS Services - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:12:49+00:00\",\"dateModified\":\"2024-11-01T11:29:33+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32969\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32969\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Deploying Our Service with AWS Services\"}]},{\"@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, Deploying Our Service with AWS Services - \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\/32969\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Deploying Our Service with AWS Services - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In recent years, the Java-based framework Spring Boot has gained popularity in the field of backend development. Spring Boot focuses on simplifying configuration and enhancing productivity, helping developers build applications more quickly and efficiently. Additionally, advancements in cloud services have opened an era where we can easily deploy our services. In particular, AWS (Amazon Web &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Deploying Our Service with AWS Services\"","og_url":"https:\/\/atmokpo.com\/w\/32969\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:12:49+00:00","article_modified_time":"2024-11-01T11:29:33+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":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/32969\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32969\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Deploying Our Service with AWS Services","datePublished":"2024-11-01T09:12:49+00:00","dateModified":"2024-11-01T11:29:33+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32969\/"},"wordCount":838,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32969\/","url":"https:\/\/atmokpo.com\/w\/32969\/","name":"Spring Boot Backend Development Course, Deploying Our Service with AWS Services - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:12:49+00:00","dateModified":"2024-11-01T11:29:33+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32969\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32969\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32969\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Deploying Our Service with AWS Services"}]},{"@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\/32969","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=32969"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32969\/revisions"}],"predecessor-version":[{"id":32970,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32969\/revisions\/32970"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32969"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32969"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32969"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}