{"id":33133,"date":"2024-11-01T09:13:59","date_gmt":"2024-11-01T09:13:59","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33133"},"modified":"2024-11-01T11:28:49","modified_gmt":"2024-11-01T11:28:49","slug":"spring-boot-backend-development-course-blog-screen-composition-example-adding-edit-and-create-features","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33133\/","title":{"rendered":"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features"},"content":{"rendered":"<p><body><\/p>\n<div class=\"container\">\n<h2>Example of Blog Screen Structure and Adding Edit\/Create Features<\/h2>\n<p>\n            Spring Boot is a Java-based framework that is very popular for backend development of web applications these days. In this course, we will explain the process of developing a simple blog system using Spring Boot step by step. In particular, we will cover in detail examples of blog screen structure and features for editing and creating posts.\n        <\/p>\n<h3>1. Starting the Project<\/h3>\n<p>\n            First, we use Spring Initializr to start a Spring Boot project. Visit <a href=\"https:\/\/start.spring.io\/\" target=\"_blank\" rel=\"noopener\">Spring Initializr<\/a> and set it up as follows:\n        <\/p>\n<ul>\n<li><strong>Project:<\/strong> Maven Project<\/li>\n<li><strong>Language:<\/strong> Java<\/li>\n<li><strong>Spring Boot:<\/strong> 2.5.4 (Select the latest version)<\/li>\n<li><strong>Packaging:<\/strong> Jar<\/li>\n<li><strong>Java Version:<\/strong> 11<\/li>\n<li><strong>Dependencies:<\/strong> Spring Web, Spring Data JPA, H2 Database, Spring Boot DevTools<\/li>\n<\/ul>\n<p>\n            Once the setup is complete, click the &#8216;GENERATE&#8217; button to download the project. Unzip the downloaded ZIP file and open the project in your IDE (e.g., IntelliJ IDEA or Eclipse).\n        <\/p>\n<h3>2. Creating a Blog Post Entity Model<\/h3>\n<p>\n            We define the Post model for the blog we are going to create. To do this, we create a class named `Post` and use JPA annotations to define the structure of the database.\n        <\/p>\n<pre><code>java\n@Entity\npublic class Post {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n    private String title;\n    private String content;\n    private LocalDateTime createdAt;\n\n    \/\/ getter, setter...\n}\n        <\/code><\/pre>\n<p>\n            Each field in the Post class you created should have appropriate annotations to grant it the properties of a JPA entity.\n        <\/p>\n<h3>3. Creating the Repository<\/h3>\n<p>\n            Now, we need to create a repository interface that can handle the `Post` entity. Using JPA, CRUD operations can be easily managed.\n        <\/p>\n<pre><code>java\n@Repository\npublic interface PostRepository extends JpaRepository<Post, Long> {\n    List<Post> findAll();\n    Optional<Post> findById(Long id);\n}\n        <\/code><\/pre>\n<h3>4. Setting Up the Service Layer<\/h3>\n<p>\n            Later, we will write a service class to handle business logic. The service class will rely on dependency injection from the repository to provide CRUD functionality.\n        <\/p>\n<pre><code>java\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> getAllPosts() {\n        return postRepository.findAll();\n    }\n\n    public Post getPostById(Long id) {\n        return postRepository.findById(id).orElse(null);\n    }\n\n    public Post createPost(Post post) {\n        return postRepository.save(post);\n    }\n\n    public Post updatePost(Long id, Post postDetails) {\n        Post post = getPostById(id);\n        if (post != null) {\n            post.setTitle(postDetails.getTitle());\n            post.setContent(postDetails.getContent());\n            return postRepository.save(post);\n        }\n        return null;\n    }\n\n    public void deletePost(Long id) {\n        postRepository.deleteById(id);\n    }\n}\n        <\/code><\/pre>\n<h3>5. Setting Up the Controller<\/h3>\n<p>\n            Create a controller class that provides a RESTful API to communicate with the frontend. You can use `@RestController` to handle HTTP requests.\n        <\/p>\n<pre><code>java\n@RestController\n@RequestMapping(\"\/api\/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 List<Post> getAllPosts() {\n        return postService.getAllPosts();\n    }\n\n    @GetMapping(\"\/{id}\")\n    public Post getPost(@PathVariable Long id) {\n        return postService.getPostById(id);\n    }\n\n    @PostMapping\n    public Post createPost(@RequestBody Post post) {\n        return postService.createPost(post);\n    }\n\n    @PutMapping(\"\/{id}\")\n    public Post updatePost(@PathVariable Long id, @RequestBody Post post) {\n        return postService.updatePost(id, post);\n    }\n\n    @DeleteMapping(\"\/{id}\")\n    public ResponseEntity<Void> deletePost(@PathVariable Long id) {\n        postService.deletePost(id);\n        return ResponseEntity.noContent().build();\n    }\n}\n        <\/code><\/pre>\n<h3>6. Setting Up the H2 Database<\/h3>\n<p>\n            We will set up the H2 database for easy use during the development process. Configure it in the `application.properties` file as follows:\n        <\/p>\n<pre><code>properties\nspring.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\n        <\/code><\/pre>\n<p>\n            To access the H2 database console, you can use the path <a href=\"\/h2-console\" target=\"_blank\" rel=\"noopener\">\/h2-console<\/a>.\n        <\/p>\n<h3>7. Setting Up the Blog Screen<\/h3>\n<p>\n            Implement the screen that makes up the blog using HTML and CSS. For example, prepare a detailed page to display the list of posts and each post.\n        <\/p>\n<pre><code>html\n<!DOCTYPE html>\n\n<html lang=\"en\">\n<head>\n    <meta charset=\"utf-8\"\/>\n    <title>Blog<\/title>\n<\/head>\n<body>\n    <h1>Blog Post List<\/h1>\n    <div id=\"postList\"><\/div>\n    <script>\n        fetch('\/api\/posts')\n            .then(response => response.json())\n            .then(data => {\n                const postList = document.getElementById('postList');\n                data.forEach(post => {\n                    const div = document.createElement('div');\n                    div.innerHTML = `<h2>${post.title}<\/h2><p>${post.content}<\/p>`;\n                    postList.appendChild(div);\n                });\n            });\n    <\/script>\n<\/body>\n<\/html>\n        <\/code><\/pre>\n<h3>8. Adding Edit\/Create Functionality<\/h3>\n<p>\n            We will add features that allow users to create and edit blog posts. To do this, we need to implement an HTML form to receive user input.\n        <\/p>\n<pre><code>html\n<form id=\"postForm\">\n    <input id=\"title\" placeholder=\"Title\" required=\"\" type=\"text\"\/>\n    <textarea id=\"content\" placeholder=\"Content\" required=\"\"><\/textarea>\n    <button type=\"submit\">Create Post<\/button>\n<\/form>\n<script>\n    const form = document.getElementById('postForm');\n    form.onsubmit = function(event) {\n        event.preventDefault();\n        const post = {\n            title: form.title.value,\n            content: form.content.value\n        };\n        fetch('\/api\/posts', {\n            method: 'POST',\n            headers: {\n                'Content-Type': 'application\/json'\n            },\n            body: JSON.stringify(post)\n        }).then(() => {\n            alert('Post has been created.');\n            location.reload();\n        });\n    };\n<\/script>\n        <\/code><\/pre>\n<p>\n            With this code, users can create a new blog post by entering a title and content. Additionally, similar functionality can be implemented to edit existing posts.\n        <\/p>\n<h3>9. Conclusion<\/h3>\n<p>\n            In this course, we learned how to build a simple blog system using Spring Boot. Through database setup, RESTful API configuration, HTML screen implementation, and adding post creation\/editing features, we have gained an understanding of the basics of web applications. Based on this, consider adding more complex features or expanding the project while considering long-term compatibility with other frameworks.\n        <\/p>\n<p>Thank you! I hope your journey in Spring Boot backend development is successful.<\/p>\n<\/div>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Example of Blog Screen Structure and Adding Edit\/Create Features Spring Boot is a Java-based framework that is very popular for backend development of web applications these days. In this course, we will explain the process of developing a simple blog system using Spring Boot step by step. In particular, we will cover in detail examples &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33133\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features&#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-33133","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, Adding Edit and Create Features - \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\/33133\/\" \/>\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, Adding Edit and Create Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Example of Blog Screen Structure and Adding Edit\/Create Features Spring Boot is a Java-based framework that is very popular for backend development of web applications these days. In this course, we will explain the process of developing a simple blog system using Spring Boot step by step. In particular, we will cover in detail examples &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33133\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:13:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:49+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\/33133\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33133\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features\",\"datePublished\":\"2024-11-01T09:13:59+00:00\",\"dateModified\":\"2024-11-01T11:28:49+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33133\/\"},\"wordCount\":507,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33133\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33133\/\",\"name\":\"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:13:59+00:00\",\"dateModified\":\"2024-11-01T11:28:49+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33133\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33133\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33133\/#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, Adding Edit and Create Features\"}]},{\"@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, Adding Edit and Create Features - \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\/33133\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Example of Blog Screen Structure and Adding Edit\/Create Features Spring Boot is a Java-based framework that is very popular for backend development of web applications these days. In this course, we will explain the process of developing a simple blog system using Spring Boot step by step. In particular, we will cover in detail examples &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features\"","og_url":"https:\/\/atmokpo.com\/w\/33133\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:13:59+00:00","article_modified_time":"2024-11-01T11:28:49+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\/33133\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33133\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features","datePublished":"2024-11-01T09:13:59+00:00","dateModified":"2024-11-01T11:28:49+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33133\/"},"wordCount":507,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33133\/","url":"https:\/\/atmokpo.com\/w\/33133\/","name":"Spring Boot Backend Development Course, Blog Screen Composition Example, Adding Edit and Create Features - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:13:59+00:00","dateModified":"2024-11-01T11:28:49+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33133\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33133\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33133\/#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, Adding Edit and Create Features"}]},{"@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\/33133","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=33133"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33133\/revisions"}],"predecessor-version":[{"id":33134,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33133\/revisions\/33134"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33133"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33133"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33133"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}