{"id":33167,"date":"2024-11-01T09:14:15","date_gmt":"2024-11-01T09:14:15","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33167"},"modified":"2024-11-01T11:28:39","modified_gmt":"2024-11-01T11:28:39","slug":"spring-boot-backend-development-course-exploring-spring-boot-3","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33167\/","title":{"rendered":"Spring Boot Backend Development Course, Exploring Spring Boot 3"},"content":{"rendered":"<p><body><\/p>\n<p>In this posting, we will conduct a course starting from the basic concepts of Spring Boot centered around the latest version, Spring Boot 3, including all the elements necessary for backend development. Spring Boot is a widely used framework in the Java development community that helps developers easily create Java web applications. This article will explain the features and advantages of Spring Boot, basic settings, building RESTful web services, database integration, security configurations, and more in detail.<\/p>\n<h2>1. What is Spring Boot?<\/h2>\n<p>Spring Boot is a lightweight framework based on the Spring Framework, developed to simplify the configuration and deployment of applications. Spring Boot helps developers quickly create standalone applications without complex XML configurations. Additionally, many default configurations are provided automatically, greatly improving development speed. Spring Boot shows its usefulness in both enterprise application development and personal projects.<\/p>\n<h2>2. Key Features of Spring Boot<\/h2>\n<ul>\n<li><strong>Simplified Configuration:<\/strong> Automatically configures basic settings, so developers do not need to set them separately.<\/li>\n<li><strong>Standalone:<\/strong> Can run with an embedded web server (e.g., Tomcat, Jetty) without the need for a separate web server installation.<\/li>\n<li><strong>Increased Productivity:<\/strong> Allows easy initial configuration and project creation through tools like Spring Initializr.<\/li>\n<li><strong>Starter Dependencies:<\/strong> Allows easy addition of necessary dependencies by bundling various libraries.<\/li>\n<li><strong>Actuator:<\/strong> Provides monitoring and management capabilities for the application, making it easy to identify issues that occur during operation.<\/li>\n<\/ul>\n<h2>3. New Features of Spring Boot 3<\/h2>\n<p>Spring Boot 3 has introduced several new features and enhancements:<\/p>\n<ul>\n<li><strong>Support for JDK 17 or higher:<\/strong> Supports the latest Java LTS versions to improve performance and stability.<\/li>\n<li><strong>Integration with Spring Native:<\/strong> Improved native executable generation features make it easier for developers to use.<\/li>\n<li><strong>Improved Configuration Properties:<\/strong> Environment settings through @ConfigurationProperties have been made more intuitive.<\/li>\n<li><strong>Enhanced Modularity:<\/strong> Composed of more granular modules, allowing selective use of only the necessary parts as needed.<\/li>\n<\/ul>\n<h2>4. Installing and Configuring Spring Boot<\/h2>\n<h3>4.1. Building the Development Environment<\/h3>\n<p>To develop with Spring Boot, the following elements are required:<\/p>\n<ul>\n<li>Java Development Kit (JDK) &#8211; JDK 17 or higher is required.<\/li>\n<li>Integrated Development Environment (IDE) &#8211; You can use IDEs like IntelliJ IDEA or Eclipse.<\/li>\n<li>Maven or Gradle &#8211; You can choose either Maven or Gradle as dependency management tools.<\/li>\n<\/ul>\n<h3>4.2. Creating a Project with Spring Initializr<\/h3>\n<p>The easiest way to start a Spring Boot project is to use <a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a>. You can create a project through various integrated settings. Here\u2019s how to set up a project:<\/p>\n<ol>\n<li>Access the website.<\/li>\n<li>Enter the project metadata (Group, Artifact, etc.).<\/li>\n<li>Select the dependencies (e.g., Spring Web, Spring Data JPA, etc.).<\/li>\n<li>Download the generated ZIP file and extract it.<\/li>\n<li>Open the project in your IDE.<\/li>\n<\/ol>\n<h2>5. Building RESTful Web Services<\/h2>\n<h3>5.1. The Concept of REST<\/h3>\n<p>REST (Representational State Transfer) is a web-based architectural style that defines the way of communication between client and server. RESTful web services are based on the HTTP protocol and follow the principles:<\/p>\n<ul>\n<li>Resource-Based &#8211; Resources are identified through URI.<\/li>\n<li>Use of HTTP Methods &#8211; Resources are manipulated using methods such as GET, POST, PUT, DELETE.<\/li>\n<li>Statelessness &#8211; The server does not maintain the state of the client.<\/li>\n<li>Transfer of Representation &#8211; Data is sent in formats such as JSON and XML.<\/li>\n<\/ul>\n<h3>5.2. Implementing a RESTful API Using Spring Boot<\/h3>\n<p>Now, let&#8217;s implement a simple RESTful API using Spring Boot. Below is the process of creating a Todo application:<\/p>\n<h4>Step 1: Defining the Entity Class<\/h4>\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 Todo {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n    private String title;\n    private boolean completed;\n\n    \/\/ Constructor, Getter, Setter omitted\n}<\/code><\/pre>\n<h4>Step 2: Creating the Repository Interface<\/h4>\n<pre><code>package com.example.demo.repository;\n\nimport com.example.demo.model.Todo;\nimport org.springframework.data.jpa.repository.JpaRepository;\n\npublic interface TodoRepository extends JpaRepository<Todo, Long> {\n}<\/code><\/pre>\n<h4>Step 3: Implementing the Service Class<\/h4>\n<pre><code>package com.example.demo.service;\n\nimport com.example.demo.model.Todo;\nimport com.example.demo.repository.TodoRepository;\nimport 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\n    public void deleteTodo(Long id) {\n        todoRepository.deleteById(id);\n    }\n}<\/code><\/pre>\n<h4>Step 4: Creating the Controller<\/h4>\n<pre><code>package com.example.demo.controller;\n\nimport com.example.demo.model.Todo;\nimport com.example.demo.service.TodoService;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.web.bind.annotation.*;\n\nimport java.util.List;\n\n@RestController\n@RequestMapping(\"\/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 Todo createTodo(@RequestBody Todo todo) {\n        return todoService.createTodo(todo);\n    }\n\n    @DeleteMapping(\"\/{id}\")\n    public void deleteTodo(@PathVariable Long id) {\n        todoService.deleteTodo(id);\n    }\n}<\/code><\/pre>\n<h2>6. Database Integration<\/h2>\n<p>Spring Boot can easily integrate with various databases. In this course, we will reinforce the Todo application using the H2 database.<\/p>\n<h3>6.1. Adding Dependencies<\/h3>\n<pre><code>dependencies {\n        implementation 'org.springframework.boot:spring-boot-starter-data-jpa'\n        implementation 'com.h2database:h2'\n    }<\/code><\/pre>\n<h3>6.2. Setting application.properties<\/h3>\n<pre><code>spring.datasource.url=jdbc:h2:mem:testdb\nspring.datasource.driverClassName=org.h2.Driver\nspring.datasource.username=sa\nspring.datasource.password=password\nspring.h2.console.enabled=true\nspring.jpa.hibernate.ddl-auto=update<\/code><\/pre>\n<p>By configuring as above, you can develop an application integrated with the H2 database. You can activate the H2 console to check the database directly.<\/p>\n<h2>7. Security Configuration<\/h2>\n<p>The security of web applications is a very important factor. Spring Boot can enhance security through Spring Security.<\/p>\n<h3>7.1. Adding Dependencies<\/h3>\n<pre><code>dependencies {\n        implementation 'org.springframework.boot:spring-boot-starter-security'\n    }<\/code><\/pre>\n<h3>7.2. Basic Security Configuration<\/h3>\n<p>With Spring Boot&#8217;s basic security configuration, you can require authentication for all requests. To do this, create a class that extends WebSecurityConfigurerAdapter.<\/p>\n<pre><code>package com.example.demo.config;\n\nimport org.springframework.context.annotation.Configuration;\nimport org.springframework.security.config.annotation.web.builders.HttpSecurity;\nimport org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;\nimport org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;\n\n@Configuration\n@EnableWebSecurity\npublic class SecurityConfig extends WebSecurityConfigurerAdapter {\n    @Override\n    protected void configure(HttpSecurity http) throws Exception {\n        http.authorizeRequests()\n                .anyRequest().authenticated()\n                .and()\n                .httpBasic();\n    }\n}<\/code><\/pre>\n<h2>8. Conclusion<\/h2>\n<p>Through this course, we have looked at the basic concepts and key features of Spring Boot 3, as well as the fundamentals of backend development that cover RESTful APIs, database integration, and security configurations. Spring Boot provides various functionalities needed by developers, which can enhance productivity and simplify the development process. We hope you will utilize Spring Boot in your future practical projects to develop various web applications.<\/p>\n<h2>9. Appendix<\/h2>\n<h3>9.1. Useful Tools and Resources<\/h3>\n<ul>\n<li><a href=\"https:\/\/spring.io\/projects\/spring-boot\">Official Spring Boot Documentation<\/a><\/li>\n<li><a href=\"https:\/\/start.spring.io\/\">Spring Initializr<\/a><\/li>\n<li><a href=\"https:\/\/docs.spring.io\/spring-security\/site\/docs\/current\/reference\/html5\/\">Spring Security Documentation<\/a><\/li>\n<\/ul>\n<h3>9.2. Communities and Forums<\/h3>\n<p>There are many communities and forums where you can exchange questions or information related to Spring Boot. Some representative places are:<\/p>\n<ul>\n<li><a href=\"https:\/\/stackoverflow.com\/questions\/tagged\/spring-boot\">Stack Overflow &#8211; Spring Boot<\/a><\/li>\n<li><a href=\"https:\/\/spring.io\/community\">Spring Community<\/a><\/li>\n<li><a href=\"https:\/\/github.com\/spring-projects\/spring-boot\/issues\">Spring Boot GitHub<\/a><\/li>\n<\/ul>\n<h3>9.3. Recommended Books<\/h3>\n<ul>\n<li><a href=\"https:\/\/www.oreilly.com\/library\/view\/spring-boot-in-action\/9781617292544\/\">Spring Boot in Action<\/a><\/li>\n<li><a href=\"https:\/\/www.manning.com\/books\/spring-boot-in-action-second-edition\">Spring Boot in Action, Second Edition<\/a><\/li>\n<li><a href=\"https:\/\/www.apress.com\/gp\/book\/9781484232284\">Spring Boot: Up and Running<\/a><\/li>\n<\/ul>\n<p>Through this course, we hope you felt the charm of Spring Boot and built foundational knowledge to apply in real projects. Every developer finds it difficult to start. However, through consistent practice and learning, you can grow into a better developer.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this posting, we will conduct a course starting from the basic concepts of Spring Boot centered around the latest version, Spring Boot 3, including all the elements necessary for backend development. Spring Boot is a widely used framework in the Java development community that helps developers easily create Java web applications. This article will &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33167\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Exploring Spring Boot 3&#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-33167","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, Exploring Spring Boot 3 - \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\/33167\/\" \/>\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, Exploring Spring Boot 3 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"In this posting, we will conduct a course starting from the basic concepts of Spring Boot centered around the latest version, Spring Boot 3, including all the elements necessary for backend development. Spring Boot is a widely used framework in the Java development community that helps developers easily create Java web applications. This article will &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Exploring Spring Boot 3&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33167\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:39+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=\"6\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Exploring Spring Boot 3\",\"datePublished\":\"2024-11-01T09:14:15+00:00\",\"dateModified\":\"2024-11-01T11:28:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/\"},\"wordCount\":845,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33167\/\",\"name\":\"Spring Boot Backend Development Course, Exploring Spring Boot 3 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:15+00:00\",\"dateModified\":\"2024-11-01T11:28:39+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33167\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33167\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Exploring Spring Boot 3\"}]},{\"@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, Exploring Spring Boot 3 - \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\/33167\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Exploring Spring Boot 3 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"In this posting, we will conduct a course starting from the basic concepts of Spring Boot centered around the latest version, Spring Boot 3, including all the elements necessary for backend development. Spring Boot is a widely used framework in the Java development community that helps developers easily create Java web applications. This article will &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Exploring Spring Boot 3\"","og_url":"https:\/\/atmokpo.com\/w\/33167\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:15+00:00","article_modified_time":"2024-11-01T11:28:39+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":"6\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/33167\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33167\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Exploring Spring Boot 3","datePublished":"2024-11-01T09:14:15+00:00","dateModified":"2024-11-01T11:28:39+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33167\/"},"wordCount":845,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33167\/","url":"https:\/\/atmokpo.com\/w\/33167\/","name":"Spring Boot Backend Development Course, Exploring Spring Boot 3 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:15+00:00","dateModified":"2024-11-01T11:28:39+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33167\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33167\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33167\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Exploring Spring Boot 3"}]},{"@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\/33167","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=33167"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33167\/revisions"}],"predecessor-version":[{"id":33168,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33167\/revisions\/33168"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33167"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33167"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33167"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}