{"id":33129,"date":"2024-11-01T09:13:58","date_gmt":"2024-11-01T09:13:58","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33129"},"modified":"2024-11-01T11:28:50","modified_gmt":"2024-11-01T11:28:50","slug":"spring-boot-backend-development-course-blog-screen-composition-example-prerequisites-thymeleaf","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33129\/","title":{"rendered":"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites  Thymeleaf"},"content":{"rendered":"<p><body><\/p>\n<p>Hello! Today, we will learn in detail about how to develop the backend of a blog using <strong>Spring Boot<\/strong>. In this course, we will cover examples for the basic screen configuration of the blog and learn how to utilize Spring Boot and <strong>Thymeleaf<\/strong> through hands-on practice.<\/p>\n<h2>Course Objectives<\/h2>\n<ul>\n<li>Understand the basic structure of Spring Boot<\/li>\n<li>Build dynamic web pages using Thymeleaf<\/li>\n<li>Implement basic CRUD functionalities for the blog<\/li>\n<li>Learn the basics of API design and database integration<\/li>\n<\/ul>\n<h2>Prerequisites: Thymeleaf<\/h2>\n<p>Thymeleaf is a template engine for creating views in web applications using Java. It is based on HTML and performs a role similar to JSP but offers more features and flexibility. Some of the advantages of Thymeleaf include:<\/p>\n<ul>\n<li>Natural templates: The written template is valid as a regular HTML file.<\/li>\n<li>Diverse view options: Supports various views such as HTML, XML, JavaScript, CSS, etc.<\/li>\n<li>Both server-side and client-side processing are possible.<\/li>\n<\/ul>\n<h2>Setting Up a Spring Boot Project<\/h2>\n<p>First, let&#8217;s learn how to set up a Spring Boot project. You can create a new project using IntelliJ IDEA or Spring Initializr.<\/p>\n<pre><code>1. Access Spring Initializr: https:\/\/start.spring.io\/\n2. Choose Project: Gradle Project\n3. Choose Language: Java\n4. Select Spring Boot: Version 2.5.4 or higher\n5. Enter Project Metadata:\n   - Group: com.example\n   - Artifact: blog\n6. Add Dependencies:\n   - Spring Web\n   - Spring Data JPA\n   - H2 Database\n   - Thymeleaf\n7. Click Generate to download the project<\/code><\/pre>\n<h3>Project Structure<\/h3>\n<p>When you create the project, a basic file structure will be generated. Understanding this structure is important.<\/p>\n<ul>\n<li><code>src\/main\/java<\/code>: This folder contains the Java source code.<\/li>\n<li><code>src\/main\/resources<\/code>: This folder contains static resources and template files, including the application.properties file.<\/li>\n<li><code>src\/test\/java<\/code>: This folder contains the test code.<\/li>\n<\/ul>\n<h2>Setting Up the Blog Model<\/h2>\n<p>In this blog application, we will primarily set up a Post model. We define the Post model using the following steps.<\/p>\n<pre><code>package com.example.blog.model;\n\nimport javax.persistence.*;\n\n@Entity\npublic class Post {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n\n    private String title;\n    private String content;\n\n    \/\/ Constructor, Getters, Setters\n    public Post() {}\n\n    public Post(String title, String content) {\n        this.title = title;\n        this.content = content;\n    }\n\n    public Long getId() {\n        return id;\n    }\n\n    public void setId(Long id) {\n        this.id = id;\n    }\n\n    public String getTitle() {\n        return title;\n    }\n\n    public void setTitle(String title) {\n        this.title = title;\n    }\n\n    public String getContent() {\n        return content;\n    }\n\n    public void setContent(String content) {\n        this.content = content;\n    }\n}<\/code><\/pre>\n<h2>Database Configuration<\/h2>\n<p>You can simply store data using the H2 database. Configure the database settings in the <code>application.properties<\/code> file as follows.<\/p>\n<pre><code>spring.h2.console.enabled=true\nspring.datasource.url=jdbc:h2:mem:testdb\nspring.datasource.driverClassName=org.h2.Driver\nspring.datasource.username=sa\nspring.datasource.password=password\nspring.jpa.database-platform=org.hibernate.dialect.H2Dialect<\/code><\/pre>\n<h2>Creating the Repository Interface<\/h2>\n<p>To easily interact with the database using JPA, we create a Repository interface.<\/p>\n<pre><code>package com.example.blog.repository;\n\nimport com.example.blog.model.Post;\nimport org.springframework.data.jpa.repository.JpaRepository;\n\npublic interface PostRepository extends JpaRepository<Post, Long> {\n}<\/code><\/pre>\n<h2>Creating the Service Class<\/h2>\n<p>The service class is where the business logic is processed. It includes CRUD functionalities for posts.<\/p>\n<pre><code>package com.example.blog.service;\n\nimport com.example.blog.model.Post;\nimport com.example.blog.repository.PostRepository;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.stereotype.Service;\n\nimport java.util.List;\n\n@Service\npublic class PostService {\n    @Autowired\n    private PostRepository postRepository;\n\n    public List<Post> findAll() {\n        return postRepository.findAll();\n    }\n\n    public Post findById(Long id) {\n        return postRepository.findById(id).orElse(null);\n    }\n\n    public Post save(Post post) {\n        return postRepository.save(post);\n    }\n\n    public void deleteById(Long id) {\n        postRepository.deleteById(id);\n    }\n}<\/code><\/pre>\n<h2>Creating the Controller Class<\/h2>\n<p>The Spring MVC controller handles web requests. It includes methods to return a list of posts and to add a new post.<\/p>\n<pre><code>package com.example.blog.controller;\n\nimport com.example.blog.model.Post;\nimport com.example.blog.service.PostService;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.stereotype.Controller;\nimport org.springframework.ui.Model;\nimport org.springframework.web.bind.annotation.GetMapping;\nimport org.springframework.web.bind.annotation.ModelAttribute;\nimport org.springframework.web.bind.annotation.PostMapping;\n\n@Controller\npublic class PostController {\n    @Autowired\n    private PostService postService;\n\n    @GetMapping(\"\/\")\n    public String listPosts(Model model) {\n        model.addAttribute(\"posts\", postService.findAll());\n        return \"post\/list\";\n    }\n\n    @GetMapping(\"\/post\/new\")\n    public String createPostForm(Model model) {\n        model.addAttribute(\"post\", new Post());\n        return \"post\/create\";\n    }\n\n    @PostMapping(\"\/post\")\n    public String savePost(@ModelAttribute Post post) {\n        postService.save(post);\n        return \"redirect:\/\";\n    }\n}<\/code><\/pre>\n<h2>Creating Thymeleaf Templates<\/h2>\n<p>Finally, we will create Thymeleaf template files to build the blog&#8217;s interface. We will draft the basic HTML file and explore how to output data.<\/p>\n<h3>Post List Screen<\/h3>\n<pre><code>&lt;!DOCTYPE html&gt;\n&lt;html xmlns:th=\"http:\/\/www.thymeleaf.org\"&gt;\n&lt;head&gt;\n    &lt;title&gt;Blog Post List&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;h1&gt;Blog Posts&lt;\/h1&gt;\n    &lt;a href=\"@{\/post\/new}\"&gt;Add New Post&lt;\/a&gt;\n    &lt;ul&gt;\n        &lt;li th:each=\"post : ${posts}\"&gt;\n            &lt;a th:href=\"@{\/post\/{id}(id=${post.id})}\"&gt;\n                &lt;span th:text=\"${post.title}\"&gt;&lt;\/span&gt;&lt;\/a&gt;\n        &lt;\/li&gt;\n    &lt;\/ul&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n<h3>Post Creation Screen<\/h3>\n<pre><code>&lt;!DOCTYPE html&gt;\n&lt;html xmlns:th=\"http:\/\/www.thymeleaf.org\"&gt;\n&lt;head&gt;\n    &lt;title&gt;Create New Post&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;h1&gt;Create New Post&lt;\/h1&gt;\n    &lt;form action=\"#\" th:action=\"@{\/post}\" th:object=\"${post}\" method=\"post\"&gt;\n        &lt;label for=\"title\"&gt;Title:&lt;\/label&gt;\n        &lt;input type=\"text\" id=\"title\" th:field=\"*{title}\" required\/&gt;\n        &lt;br\/&gt;\n        &lt;label for=\"content\"&gt;Content:&lt;\/label&gt;\n        &lt;textarea id=\"content\" th:field=\"*{content}\" required&gt;&lt;\/textarea&gt;\n        &lt;br\/&gt;\n        &lt;button type=\"submit\"&gt;Submit&lt;\/button&gt;\n    &lt;\/form&gt;\n    &lt;a href=\"@{\/}\"&gt;Go Back to List&lt;\/a&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>In this course, we explored backend development using Spring Boot and the creation of a simple blog interface with Thymeleaf. Through this example, we gained an understanding of the basic workings of Spring Boot and learned how to create dynamic web pages using Thymeleaf.<\/p>\n<p>Furthermore, based on this example, feel free to add various features or apply different design patterns. You will learn a lot during the process of developing a real application using Spring Boot and Thymeleaf.<\/p>\n<p>Thank you!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! Today, we will learn in detail about how to develop the backend of a blog using Spring Boot. In this course, we will cover examples for the basic screen configuration of the blog and learn how to utilize Spring Boot and Thymeleaf through hands-on practice. Course Objectives Understand the basic structure of Spring Boot &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33129\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites  Thymeleaf&#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-33129","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, Blog Screen Composition Example, Prerequisites Thymeleaf - \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\/33129\/\" \/>\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, Blog Screen Composition Example, Prerequisites Thymeleaf - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! Today, we will learn in detail about how to develop the backend of a blog using Spring Boot. In this course, we will cover examples for the basic screen configuration of the blog and learn how to utilize Spring Boot and Thymeleaf through hands-on practice. Course Objectives Understand the basic structure of Spring Boot &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33129\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:13:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:50+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\/33129\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33129\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf\",\"datePublished\":\"2024-11-01T09:13:58+00:00\",\"dateModified\":\"2024-11-01T11:28:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33129\/\"},\"wordCount\":460,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33129\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33129\/\",\"name\":\"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:13:58+00:00\",\"dateModified\":\"2024-11-01T11:28:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33129\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33129\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33129\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf\"}]},{\"@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, Blog Screen Composition Example, Prerequisites Thymeleaf - \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\/33129\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! Today, we will learn in detail about how to develop the backend of a blog using Spring Boot. In this course, we will cover examples for the basic screen configuration of the blog and learn how to utilize Spring Boot and Thymeleaf through hands-on practice. Course Objectives Understand the basic structure of Spring Boot &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf\"","og_url":"https:\/\/atmokpo.com\/w\/33129\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:13:58+00:00","article_modified_time":"2024-11-01T11:28:50+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\/33129\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33129\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf","datePublished":"2024-11-01T09:13:58+00:00","dateModified":"2024-11-01T11:28:50+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33129\/"},"wordCount":460,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33129\/","url":"https:\/\/atmokpo.com\/w\/33129\/","name":"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:13:58+00:00","dateModified":"2024-11-01T11:28:50+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33129\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33129\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33129\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Blog Screen Composition Example, Prerequisites Thymeleaf"}]},{"@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\/33129","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=33129"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33129\/revisions"}],"predecessor-version":[{"id":33130,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33129\/revisions\/33130"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33129"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33129"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33129"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}