{"id":33145,"date":"2024-11-01T09:14:05","date_gmt":"2024-11-01T09:14:05","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33145"},"modified":"2024-11-01T11:28:45","modified_gmt":"2024-11-01T11:28:45","slug":"spring-boot-backend-development-course-blog-screen-layout-example-writing-controllers-for-learning-thymeleaf-syntax","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33145\/","title":{"rendered":"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax"},"content":{"rendered":"<p><body><\/p>\n<article>\n<section>\n<h2>1. Overview<\/h2>\n<p>This course helps to provide a basic understanding of backend development using Spring Boot and explains how to learn Thymeleaf syntax through a blog screen composition example.<\/p>\n<p>Spring Boot is a Java-based web application framework that helps you create web applications quickly and easily without complex configurations. This allows developers to focus on business logic and increase productivity.<\/p>\n<\/section>\n<section>\n<h2>2. Tech Stack<\/h2>\n<p>The main tech stack used in this course includes:<\/p>\n<ul>\n<li>Java 11 or higher<\/li>\n<li>Spring Boot 2.x<\/li>\n<li>Thymeleaf<\/li>\n<li>Spring Data JPA<\/li>\n<li>H2 Database<\/li>\n<\/ul>\n<p>This tech stack forms a strong combination for backend development. A brief description of each tech stack is as follows.<\/p>\n<ul>\n<li><strong>Java:<\/strong> An object-oriented programming language that is platform-independent.<\/li>\n<li><strong>Spring Boot:<\/strong> A framework that simplifies configuration and deployment in Java Spring.<\/li>\n<li><strong>Thymeleaf:<\/strong> An HTML5 template engine used for composing views.<\/li>\n<li><strong>Spring Data JPA:<\/strong> A library that makes it easier to interact with the database.<\/li>\n<li><strong>H2 Database:<\/strong> A lightweight, in-memory database suitable for testing and prototyping.<\/li>\n<\/ul>\n<\/section>\n<section>\n<h2>3. Project Setup<\/h2>\n<p>To set up a Spring Boot project, use Spring Initializr. Access <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a> and configure the following settings:<\/p>\n<ul>\n<li>Project: Maven Project<\/li>\n<li>Language: Java<\/li>\n<li>Spring Boot: 2.x<\/li>\n<li>Group: com.example<\/li>\n<li>Artifact: blog<\/li>\n<li>Dependencies: Spring Web, Thymeleaf, Spring Data JPA, H2 Database<\/li>\n<\/ul>\n<p>Save the above settings and download the project. Then import it in your IDE to start working.<\/p>\n<\/section>\n<section>\n<h2>4. Create Entity Class<\/h2>\n<p>Create entity classes to define the data models needed for the application. To store basic blog posts, the Post entity class is created as follows:<\/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    @Column(nullable = false)\n    private String title;\n\n    @Column(nullable = false)\n    private String content;\n\n    private String author;\n\n    \/\/ getters and setters\n}<\/code><\/pre>\n<p>This class contains the ID, title, content, and author of the post. It handles the mapping to the database using JPA.<\/p>\n<\/section>\n<section>\n<h2>5. Create Repository Interface<\/h2>\n<p>Create a repository interface that extends JpaRepository to handle CRUD operations for the Post entity:<\/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<p>This interface allows easy access to CRUD operations associated with the Post entity in the database.<\/p>\n<\/section>\n<section>\n<h2>6. Write Service Class<\/h2>\n<p>Create a service class that handles business logic and defines business rules. The PostService class is written as follows:<\/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    private final PostRepository postRepository;\n\n    @Autowired\n    public PostService(PostRepository postRepository) {\n        this.postRepository = postRepository;\n    }\n\n    public List<Post> findAll() {\n        return postRepository.findAll();\n    }\n\n    public Post save(Post post) {\n        return postRepository.save(post);\n    }\n\n    public Post findById(Long id) {\n        return postRepository.findById(id).orElse(null);\n    }\n\n    public void deleteById(Long id) {\n        postRepository.deleteById(id);\n    }\n}<\/code><\/pre>\n<p>This class defines methods to retrieve the list of posts, save posts, and delete posts.<\/p>\n<\/section>\n<section>\n<h2>7. Write Controller<\/h2>\n<p>Now, let&#8217;s write the controller class to handle client requests. The PostController class can be written as follows:<\/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.*;\n\nimport java.util.List;\n\n@Controller\n@RequestMapping(\"\/posts\")\npublic class PostController {\n    private final PostService postService;\n\n    @Autowired\n    public PostController(PostService postService) {\n        this.postService = postService;\n    }\n\n    @GetMapping\n    public String list(Model model) {\n        List<Post> posts = postService.findAll();\n        model.addAttribute(\"posts\", posts);\n        return \"post\/list\";\n    }\n\n    @GetMapping(\"\/new\")\n    public String createForm(Model model) {\n        model.addAttribute(\"post\", new Post());\n        return \"post\/form\";\n    }\n\n    @PostMapping\n    public String create(Post post) {\n        postService.save(post);\n        return \"redirect:\/posts\";\n    }\n    \n    @GetMapping(\"\/{id}\")\n    public String view(@PathVariable Long id, Model model) {\n        Post post = postService.findById(id);\n        model.addAttribute(\"post\", post);\n        return \"post\/view\";\n    }\n\n    @GetMapping(\"\/edit\/{id}\")\n    public String editForm(@PathVariable Long id, Model model) {\n        Post post = postService.findById(id);\n        model.addAttribute(\"post\", post);\n        return \"post\/form\";\n    }\n\n    @PostMapping(\"\/edit\/{id}\")\n    public String edit(@PathVariable Long id, Post post) {\n        post.setId(id);\n        postService.save(post);\n        return \"redirect:\/posts\";\n    }\n\n    @GetMapping(\"\/delete\/{id}\")\n    public String delete(@PathVariable Long id) {\n        postService.deleteById(id);\n        return \"redirect:\/posts\";\n    }\n}<\/code><\/pre>\n<p>The controller defines handler methods for HTTP requests following the pattern. The above code implements listing, creating, editing, and deleting posts functionalities.<\/p>\n<\/section>\n<section>\n<h2>8. Write Thymeleaf Template<\/h2>\n<p>Now it&#8217;s time to create the HTML view using Thymeleaf. The list.html to display the list of posts can be written as follows:<\/p>\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;Post List&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    &lt;h1&gt;Post List&lt;\/h1&gt;\n    &lt;a href=\"@{\/posts\/new}\"&gt;Create New Post&lt;\/a&gt;\n    &lt;ul&gt;\n        &lt;li th:each=\"post : ${posts}\"&gt;\n            &lt;a th:href=\"@{\/posts\/{id}(id=${post.id})}\"&gt;[[${post.title}]]&lt;\/a&gt;\n        &lt;\/li&gt;\n    &lt;\/ul&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n<p>The above template displays the list of posts, where clicking on each post title will take you to the details page of that post.<\/p>\n<\/section>\n<section>\n<h2>9. Conclusion<\/h2>\n<p>This course introduced how to build a simple blog application using Spring Boot and Thymeleaf. I hope it helped you understand basic backend development by creating entity, repository, service, controller, and view step by step.<\/p>\n<p>If you want to add more features, consider implementing comment functionality for posts, user authentication, and permission management. This will help you build a solid foundation for more advanced web application development.<\/p>\n<\/section>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. Overview This course helps to provide a basic understanding of backend development using Spring Boot and explains how to learn Thymeleaf syntax through a blog screen composition example. Spring Boot is a Java-based web application framework that helps you create web applications quickly and easily without complex configurations. This allows developers to focus on &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33145\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax&#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-33145","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 Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \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\/33145\/\" \/>\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 Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. Overview This course helps to provide a basic understanding of backend development using Spring Boot and explains how to learn Thymeleaf syntax through a blog screen composition example. Spring Boot is a Java-based web application framework that helps you create web applications quickly and easily without complex configurations. This allows developers to focus on &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33145\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:45+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\/33145\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33145\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax\",\"datePublished\":\"2024-11-01T09:14:05+00:00\",\"dateModified\":\"2024-11-01T11:28:45+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33145\/\"},\"wordCount\":513,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33145\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33145\/\",\"name\":\"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:05+00:00\",\"dateModified\":\"2024-11-01T11:28:45+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33145\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33145\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33145\/#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 Layout Example, Writing Controllers for Learning Thymeleaf Syntax\"}]},{\"@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 Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \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\/33145\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. Overview This course helps to provide a basic understanding of backend development using Spring Boot and explains how to learn Thymeleaf syntax through a blog screen composition example. Spring Boot is a Java-based web application framework that helps you create web applications quickly and easily without complex configurations. This allows developers to focus on &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax\"","og_url":"https:\/\/atmokpo.com\/w\/33145\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:05+00:00","article_modified_time":"2024-11-01T11:28:45+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\/33145\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33145\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax","datePublished":"2024-11-01T09:14:05+00:00","dateModified":"2024-11-01T11:28:45+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33145\/"},"wordCount":513,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33145\/","url":"https:\/\/atmokpo.com\/w\/33145\/","name":"Spring Boot Backend Development Course, Blog Screen Layout Example, Writing Controllers for Learning Thymeleaf Syntax - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:05+00:00","dateModified":"2024-11-01T11:28:45+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33145\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33145\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33145\/#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 Layout Example, Writing Controllers for Learning Thymeleaf Syntax"}]},{"@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\/33145","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=33145"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33145\/revisions"}],"predecessor-version":[{"id":33146,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33145\/revisions\/33146"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33145"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33145"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33145"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}