{"id":33245,"date":"2024-11-01T09:14:50","date_gmt":"2024-11-01T09:14:50","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33245"},"modified":"2024-11-01T11:28:17","modified_gmt":"2024-11-01T11:28:17","slug":"spring-boot-backend-development-course-deploying-our-service-on-elastic-beanstalk","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33245\/","title":{"rendered":"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk"},"content":{"rendered":"<p><body><\/p>\n<p>Hello! Today we will learn how to develop a backend service using Spring Boot and deploy it to Elastic Beanstalk. This course is aimed at those who have an understanding of backend development and AWS services, and we will explain everything step by step from the basics.<\/p>\n<h2>Table of Contents<\/h2>\n<ol>\n<li><a href=\"#spring-boot-introduction\">Introduction to Spring Boot<\/a><\/li>\n<li><a href=\"#spring-boot-project-setup\">Setting Up a Spring Boot Project<\/a><\/li>\n<li><a href=\"#develop-backend-service\">Developing the Backend Service<\/a><\/li>\n<li><a href=\"#testing-application\">Testing the Application<\/a><\/li>\n<li><a href=\"#package-deployment\">Creating the Deployment Package<\/a><\/li>\n<li><a href=\"#elastic-beanstalk-introduction\">Introduction to Elastic Beanstalk<\/a><\/li>\n<li><a href=\"#deploying-to-elastic-beanstalk\">Deploying to Elastic Beanstalk<\/a><\/li>\n<li><a href=\"#conclusion\">Conclusion<\/a><\/li>\n<\/ol>\n<h2 id=\"spring-boot-introduction\">Introduction to Spring Boot<\/h2>\n<p>Spring Boot is a development framework based on the Spring Framework that helps you develop applications rapidly. Spring Boot enables auto-configuration, provides an embedded server, and allows for easy integration with builders like Maven or Gradle. This allows developers to focus on business logic without the burden of configuration.<\/p>\n<h3>Main Features<\/h3>\n<ul>\n<li>Auto-Configuration: Spring Boot automatically configures default settings for the application.<\/li>\n<li>Standalone: Can run independently using an embedded Tomcat.<\/li>\n<li>Dependency Management: Supports integration with Maven or Gradle for managing various library dependencies.<\/li>\n<li>Monitoring: The Actuator allows you to monitor the application&#8217;s status.<\/li>\n<\/ul>\n<h2 id=\"spring-boot-project-setup\">Setting Up a Spring Boot Project<\/h2>\n<p>You can use <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a> to set up a Spring Boot project. On this site, you can enter project metadata and select the necessary dependencies.<\/p>\n<h3>1. Accessing Spring Initializr<\/h3>\n<p>Access Spring Initializr and input the following:<\/p>\n<ul>\n<li>Project: Maven Project<\/li>\n<li>Language: Java<\/li>\n<li>Spring Boot: 2.5.4 (set to the latest version)<\/li>\n<li>Group: com.example<\/li>\n<li>Artifact: demo<\/li>\n<li>Dependencies: Spring Web, Spring Data JPA, H2 Database<\/li>\n<\/ul>\n<p>After completing the setup, click the <code>Generate<\/code> button to download the ZIP file.<\/p>\n<h3>2. Opening the Project in an IDE<\/h3>\n<p>Unzip the downloaded ZIP file in your desired directory, and open the project in an IDE like IntelliJ IDEA or Eclipse.<\/p>\n<h2 id=\"develop-backend-service\">Developing the Backend Service<\/h2>\n<p>Now that the project is set up, let&#8217;s develop the actual backend service. We will create a simple user management REST API.<\/p>\n<h3>1. Creating the Entity<\/h3>\n<p>Create a <code>User<\/code> entity 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.IDENTITY)\n    private Long id;\n    private String name;\n    private String email;\n\n    \/\/ Getters and Setters\n}<\/code><\/pre>\n<h3>2. Creating the Repository Interface<\/h3>\n<p>Create a repository interface for interacting with the database using JPA.<\/p>\n<pre><code>package com.example.demo.repository;\n\nimport com.example.demo.model.User;\nimport org.springframework.data.jpa.repository.JpaRepository;\n\npublic interface UserRepository extends JpaRepository<User, Long> {\n}<\/code><\/pre>\n<h3>3. Creating the Service Class<\/h3>\n<p>Create a service class to handle business logic.<\/p>\n<pre><code>package com.example.demo.service;\n\nimport com.example.demo.model.User;\nimport com.example.demo.repository.UserRepository;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.stereotype.Service;\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>4. Creating the Controller Class<\/h3>\n<p>Create a controller to handle REST API endpoints.<\/p>\n<pre><code>package com.example.demo.controller;\n\nimport com.example.demo.model.User;\nimport com.example.demo.service.UserService;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.web.bind.annotation.*;\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> getUsers() {\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 id=\"testing-application\">Testing the Application<\/h2>\n<p>Now let&#8217;s test if the application is running well. After running the Spring Boot application, you can call the REST API using Postman or cURL.<\/p>\n<h3>1. Running the Application<\/h3>\n<p>Start the application by running the main class in the IDE. It will run at <code>http:\/\/localhost:8080<\/code> by default.<\/p>\n<h3>2. User Creation Request<\/h3>\n<p>Open Postman and create a request to call the user creation API as follows.<\/p>\n<ul>\n<li>POST: <code>http:\/\/localhost:8080\/api\/users<\/code><\/li>\n<li>Body (in JSON format):\n<pre><code>{\n    \"name\": \"John Doe\",\n    \"email\": \"john@example.com\"\n}<\/code><\/pre>\n<\/li>\n<\/ul>\n<h3>3. User Retrieval Request<\/h3>\n<p>Create a GET request to retrieve all user information.<\/p>\n<ul>\n<li>GET: <code>http:\/\/localhost:8080\/api\/users<\/code><\/li>\n<\/ul>\n<h2 id=\"package-deployment\">Creating the Deployment Package<\/h2>\n<p>If the application works correctly, create a package for deployment. We will build the JAR file using Maven.<\/p>\n<h3>1. Maven Build<\/h3>\n<p>Run the following command in the terminal to build the project.<\/p>\n<pre><code>.\/mvnw clean package<\/code><\/pre>\n<p>This command generates a JAR file in the <code>target<\/code> folder.<\/p>\n<h2 id=\"elastic-beanstalk-introduction\">Introduction to Elastic Beanstalk<\/h2>\n<p>Elastic Beanstalk, provided by Amazon Web Services (AWS), is a service that helps deploy and manage web applications easily. Using this service, AWS handles the server and infrastructure management, allowing developers to focus solely on application development.<\/p>\n<h3>Main Features<\/h3>\n<ul>\n<li>Automated Infrastructure Management: Automatically manages all infrastructure including servers, load balancers, and databases.<\/li>\n<li>Stability: Provides a reliable hosting environment using EC2 instances.<\/li>\n<li>Scaling: Automatically adds instances as the number of users increases.<\/li>\n<li>Monitoring: Allows real-time monitoring of application status and logs through the AWS Management Console.<\/li>\n<\/ul>\n<h2 id=\"deploying-to-elastic-beanstalk\">Deploying to Elastic Beanstalk<\/h2>\n<p>Now we will go through the process of deploying the created JAR file to Elastic Beanstalk.<\/p>\n<h3>1. Creating and Logging into an AWS Account<\/h3>\n<p>First, create an AWS account and log into the console.<\/p>\n<h3>2. Creating an Elastic Beanstalk Environment<\/h3>\n<p>Select Elastic Beanstalk in the AWS Management Console, and click the <code>Create New Application<\/code> button. Enter the application name and description, and click <code>Create<\/code>.<\/p>\n<h3>3. Creating an Environment<\/h3>\n<p>In the application dashboard, click <code>Create New Environment<\/code>, and then choose <code>Web server environment<\/code>. Select <code>Java<\/code> as the Platform, choose <code>Upload your code<\/code> for the application code, and upload the previously created JAR file.<\/p>\n<h3>4. Configuring the Environment<\/h3>\n<p>After completing the settings for the environment, click <code>Create Environment<\/code> to finalize the environment creation. This process may take a few minutes.<\/p>\n<h3>5. Accessing the Application<\/h3>\n<p>After the environment is created, you can access the deployed application&#8217;s URL. Visit that URL to check if the application is functioning properly.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>In conclusion, we have learned how to develop a backend service using Spring Boot and deploy it to Elastic Beanstalk. Thanks to the powerful features of Spring Boot and AWS&#8217;s flexible infrastructure management, quick and stable development and deployment have become possible. I recommend operating various services through AWS in the future.<\/p>\n<p>Thank you!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! Today we will learn how to develop a backend service using Spring Boot and deploy it to Elastic Beanstalk. This course is aimed at those who have an understanding of backend development and AWS services, and we will explain everything step by step from the basics. Table of Contents Introduction to Spring Boot Setting &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33245\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk&#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-33245","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 on Elastic Beanstalk - \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\/33245\/\" \/>\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 on Elastic Beanstalk - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! Today we will learn how to develop a backend service using Spring Boot and deploy it to Elastic Beanstalk. This course is aimed at those who have an understanding of backend development and AWS services, and we will explain everything step by step from the basics. Table of Contents Introduction to Spring Boot Setting &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33245\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:17+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\/33245\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33245\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk\",\"datePublished\":\"2024-11-01T09:14:50+00:00\",\"dateModified\":\"2024-11-01T11:28:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33245\/\"},\"wordCount\":781,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33245\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33245\/\",\"name\":\"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:50+00:00\",\"dateModified\":\"2024-11-01T11:28:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33245\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33245\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33245\/#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 on Elastic Beanstalk\"}]},{\"@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 on Elastic Beanstalk - \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\/33245\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! Today we will learn how to develop a backend service using Spring Boot and deploy it to Elastic Beanstalk. This course is aimed at those who have an understanding of backend development and AWS services, and we will explain everything step by step from the basics. Table of Contents Introduction to Spring Boot Setting &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk\"","og_url":"https:\/\/atmokpo.com\/w\/33245\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:50+00:00","article_modified_time":"2024-11-01T11:28:17+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\/33245\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33245\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk","datePublished":"2024-11-01T09:14:50+00:00","dateModified":"2024-11-01T11:28:17+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33245\/"},"wordCount":781,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33245\/","url":"https:\/\/atmokpo.com\/w\/33245\/","name":"Spring Boot Backend Development Course, Deploying Our Service on Elastic Beanstalk - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:50+00:00","dateModified":"2024-11-01T11:28:17+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33245\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33245\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33245\/#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 on Elastic Beanstalk"}]},{"@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\/33245","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=33245"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33245\/revisions"}],"predecessor-version":[{"id":33246,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33245\/revisions\/33246"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33245"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33245"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33245"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}