{"id":33223,"date":"2024-11-01T09:14:39","date_gmt":"2024-11-01T09:14:39","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33223"},"modified":"2024-11-01T11:28:24","modified_gmt":"2024-11-01T11:28:24","slug":"spring-boot-backend-development-course-spring-and-spring-boot","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33223\/","title":{"rendered":"Spring Boot Backend Development Course, Spring and Spring Boot"},"content":{"rendered":"<div class=\"blog-post\">\n<h2>Introduction<\/h2>\n<p>\n        With the development of modern web applications, the importance of backend development is growing day by day.<br \/>\n        The Java-based Spring framework is one of the widely used backend technologies among many developers.<br \/>\n        In particular, Spring Boot is emerging as a tool that enables efficient development.<br \/>\n        In this course, we will take an in-depth look at the basic concepts of the Spring framework and the characteristics and advantages of Spring Boot.\n    <\/p>\n<h2>Overview of the Spring Framework<\/h2>\n<p>\n        The Spring framework is an application framework for the Java platform that provides various features to conveniently assist in enterprise-level application development.<br \/>\n        Spring is mainly composed of the following modules.\n    <\/p>\n<ul>\n<li>Spring Core: Provides the basic features of Spring, including IoC (Inversion of Control) and DI (Dependency Injection) capabilities.<\/li>\n<li>Spring MVC: Supports the MVC architecture for web application development.<\/li>\n<li>Spring Data: Supports integration with various databases.<\/li>\n<li>Spring Security: Provides robust authentication and authorization features for application security.<\/li>\n<\/ul>\n<h2>Differences Between Spring and Spring Boot<\/h2>\n<p>\n        The Spring framework has traditionally provided flexibility in application composition and management.<br \/>\n        However, this has resulted in the need for complex configurations and initialization processes.<br \/>\n        On the other hand, Spring Boot is a tool developed to solve these issues.<br \/>\n        Here are the main differences between the two frameworks.\n    <\/p>\n<ol>\n<li>Configuration Method: Spring Boot follows the principle of &#8216;convention over configuration,&#8217; allowing applications to start with minimal configuration.<\/li>\n<li>Embedded Server: Spring Boot supports embedded web servers such as Tomcat and Jetty, allowing applications to run without separately configuring a server.<\/li>\n<li>Starter Dependencies: Spring Boot provides a module called &#8216;starter&#8217; to easily manage various dependencies, enabling developers to easily add required features.<\/li>\n<li>Actuator: Spring Boot includes an actuator module that provides various features for monitoring and managing the application&#8217;s status.<\/li>\n<\/ol>\n<h2>Installing and Setting Up Spring Boot<\/h2>\n<p>\n        To start backend development using Spring Boot, you first need to set up your development environment.<br \/>\n        Let\u2019s follow the steps below to install Spring Boot and create a simple project.\n    <\/p>\n<h3>1. Preparing the Development Environment<\/h3>\n<p>\n        The tools required to use Spring Boot are as follows.\n    <\/p>\n<ul>\n<li>Java Development Kit (JDK): Java 8 or higher is required.<\/li>\n<li>IDE: Choose an integrated development environment (IDE) such as IntelliJ IDEA or Eclipse that supports Java development.<\/li>\n<li>Maven\/Gradle: Choose Maven or Gradle for dependency management.<\/li>\n<\/ul>\n<h3>2. Creating a Spring Boot Project<\/h3>\n<p>\n        Spring Boot projects can be created in various ways, but the simplest way is to use Spring Initializr.<br \/>\n        By visiting the website and entering the required settings, you can automatically generate the initial project structure.\n    <\/p>\n<ul>\n<li><a href=\"https:\/\/start.spring.io\/\">Spring Initializr Website<\/a><\/li>\n<li>Enter Project Meta Information: Set Group, Artifact, Name, Description, Package name, etc.<\/li>\n<li>Add Required Dependencies: Choose and add Spring Web, Spring Data JPA, H2 Database, etc.<\/li>\n<li>Download the generated project and open it in your IDE.<\/li>\n<\/ul>\n<h2>Structure of a Spring Boot Application<\/h2>\n<p>\n        The created Spring Boot project has the following structure.\n    <\/p>\n<pre>\n        \u2514\u2500\u2500 src\n            \u2514\u2500\u2500 main\n                \u251c\u2500\u2500 java\n                \u2502   \u2514\u2500\u2500 com\n                \u2502       \u2514\u2500\u2500 example\n                \u2502           \u2514\u2500\u2500 demo\n                \u2502               \u251c\u2500\u2500 DemoApplication.java\n                \u2502               \u2514\u2500\u2500 controller\n                \u2502                   \u2514\u2500\u2500 HelloController.java\n                \u2514\u2500\u2500 resources\n                    \u251c\u2500\u2500 application.properties\n                    \u2514\u2500\u2500 static\n    <\/pre>\n<h2>Creating Your First Web Application<\/h2>\n<p>\n        Let&#8217;s create a simple RESTful web service.<br \/>\n        First, we will create a controller to handle HTTP requests.\n    <\/p>\n<h3>1. Creating the HelloController Class<\/h3>\n<p>\n<code>HelloController<\/code> class is the most basic class for handling web requests and can be written as follows.\n    <\/p>\n<pre>\n        package com.example.demo.controller;\n\n        import org.springframework.web.bind.annotation.GetMapping;\n        import org.springframework.web.bind.annotation.RestController;\n\n        @RestController\n        public class HelloController {\n            @GetMapping(\"\/hello\")\n            public String hello() {\n                return \"Hello, Spring Boot!\";\n            }\n        }\n    <\/pre>\n<h3>2. Running the Application<\/h3>\n<p>\n        Running the <code>DemoApplication<\/code> class in the IDE will start the embedded server,<br \/>\n        and when you access <a href=\"http:\/\/localhost:8080\/hello\">http:\/\/localhost:8080\/hello<\/a>,<br \/>\n        you can see the message \u201cHello, Spring Boot!\u201d.\n    <\/p>\n<h2>Database Integration<\/h2>\n<p>\n        Spring Boot supports integration with various databases.<br \/>\n        In this section, we will build a simple CRUD application using H2 Database.\n    <\/p>\n<h3>1. Adding Dependencies<\/h3>\n<p>\nAdd the H2 database and JPA-related dependencies to the <code>pom.xml<\/code> file.\n    <\/p>\n<pre>\n        <dependencies>\n            <!-- Spring Data JPA -->\n            <dependency>\n                <groupId>org.springframework.boot<\/groupId>\n                <artifactId>spring-boot-starter-data-jpa<\/artifactId>\n            <\/dependency>\n            <!-- H2 Database -->\n            <dependency>\n                <groupId>com.h2database<\/groupId>\n                <artifactId>h2<\/artifactId>\n                <scope>runtime<\/scope>\n            <\/dependency>\n        <\/dependencies>\n    <\/pre>\n<h3>2. Database Configuration<\/h3>\n<p>\n        Add simple configuration in the <code>application.properties<\/code> file.\n    <\/p>\n<pre>\n        spring.h2.console.enabled=true\n        spring.datasource.url=jdbc:h2:mem:testdb\n        spring.datasource.driverClassName=org.h2.Driver\n        spring.datasource.username=sa\n        spring.datasource.password=\n    <\/pre>\n<h3>3. Creating the Entity Class<\/h3>\n<p>\n        Let&#8217;s create an entity class to store data in the database.<br \/>\n        We will create a <code>User<\/code> class to store user information.\n    <\/p>\n<pre>\n        package com.example.demo.entity;\n\n        import javax.persistence.Entity;\n        import javax.persistence.GeneratedValue;\n        import javax.persistence.GenerationType;\n        import javax.persistence.Id;\n\n        @Entity\n        public class User {\n            @Id\n            @GeneratedValue(strategy = GenerationType.AUTO)\n            private Long id;\n            private String name;\n            private String email;\n\n            \/\/ Getters and Setters\n        }\n    <\/pre>\n<h3>4. Creating the Repository Interface<\/h3>\n<p>\n        Create a repository interface to interact with the database.\n    <\/p>\n<pre>\n        package com.example.demo.repository;\n\n        import com.example.demo.entity.User;\n        import org.springframework.data.jpa.repository.JpaRepository;\n\n        public interface UserRepository extends JpaRepository<User, Long> {\n        }\n    <\/pre>\n<h3>5. Updating the Controller<\/h3>\n<p>\n        To add API endpoints that handle CRUD operations,<br \/>\n        create a <code>UserController<\/code> and add request mappings.\n    <\/p>\n<pre>\n        package com.example.demo.controller;\n\n        import com.example.demo.entity.User;\n        import com.example.demo.repository.UserRepository;\n        import org.springframework.beans.factory.annotation.Autowired;\n        import org.springframework.web.bind.annotation.*;\n\n        import java.util.List;\n\n        @RestController\n        @RequestMapping(\"\/users\")\n        public class UserController {\n            @Autowired\n            private UserRepository userRepository;\n\n            @GetMapping\n            public List<User> getAllUsers() {\n                return userRepository.findAll();\n            }\n\n            @PostMapping\n            public User createUser(@RequestBody User user) {\n                return userRepository.save(user);\n            }\n        }\n    <\/pre>\n<h3>6. Running and Testing the Application<\/h3>\n<p>\n        Restart the application, and use tools like Postman to test the<br \/>\n        <code>GET \/users<\/code> and <code>POST \/users<\/code> endpoints.\n    <\/p>\n<h2>Security Configuration with Spring Security<\/h2>\n<p>\n        Security is very important for backend applications.<br \/>\n        Let\u2019s add access control and authentication through Spring Security.\n    <\/p>\n<h3>1. Adding Dependencies<\/h3>\n<p>\nAdd Spring Security dependency to the <code>pom.xml<\/code> file.\n    <\/p>\n<pre>\n        <dependency>\n            <groupId>org.springframework.boot<\/groupId>\n            <artifactId>spring-boot-starter-security<\/artifactId>\n        <\/dependency>\n    <\/pre>\n<h3>2. Creating the Security Configuration Class<\/h3>\n<p>\n        Create a configuration class to use Spring Security.\n    <\/p>\n<pre>\n        package com.example.demo.config;\n\n        import org.springframework.context.annotation.Bean;\n        import org.springframework.context.annotation.Configuration;\n        import org.springframework.security.config.annotation.web.builders.HttpSecurity;\n        import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;\n        import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;\n\n        @Configuration\n        @EnableWebSecurity\n        public class SecurityConfig extends WebSecurityConfigurerAdapter {\n            @Override\n            protected void configure(HttpSecurity http) throws Exception {\n                http\n                    .authorizeRequests()\n                    .anyRequest().authenticated()\n                    .and()\n                    .httpBasic();\n            }\n        }\n    <\/pre>\n<h3>3. Testing and Verification<\/h3>\n<p>\n        Restart the application, and you can connect to API tests using HTTP Basic authentication.\n    <\/p>\n<h2>Conclusion<\/h2>\n<p>\n        In this course, we covered the basics of the Spring framework and the development process of<br \/>\n        backend applications using Spring Boot.<br \/>\n        As Spring Boot&#8217;s accessibility increases, more developers can<br \/>\n        easily develop backend applications.<br \/>\n        We encourage you to integrate various tools or add additional features<br \/>\n        to create more robust applications in the future.\n    <\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/spring.io\/projects\/spring-boot\">Official Spring Boot Documentation<\/a><\/li>\n<li><a href=\"https:\/\/www.baeldung.com\/spring-boot\">Baeldung Spring Boot Course<\/a><\/li>\n<li><a href=\"https:\/\/www.tutorialspoint.com\/spring_boot\/index.htm\">TutorialsPoint Spring Boot<\/a><\/li>\n<\/ul>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Introduction With the development of modern web applications, the importance of backend development is growing day by day. The Java-based Spring framework is one of the widely used backend technologies among many developers. In particular, Spring Boot is emerging as a tool that enables efficient development. In this course, we will take an in-depth look &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33223\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Spring and Spring Boot&#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-33223","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, Spring and Spring Boot - \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\/33223\/\" \/>\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, Spring and Spring Boot - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Introduction With the development of modern web applications, the importance of backend development is growing day by day. The Java-based Spring framework is one of the widely used backend technologies among many developers. In particular, Spring Boot is emerging as a tool that enables efficient development. In this course, we will take an in-depth look &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Spring and Spring Boot&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33223\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:39+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:24+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\/33223\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33223\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Spring and Spring Boot\",\"datePublished\":\"2024-11-01T09:14:39+00:00\",\"dateModified\":\"2024-11-01T11:28:24+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33223\/\"},\"wordCount\":789,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33223\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33223\/\",\"name\":\"Spring Boot Backend Development Course, Spring and Spring Boot - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:39+00:00\",\"dateModified\":\"2024-11-01T11:28:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33223\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33223\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33223\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Spring and Spring Boot\"}]},{\"@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, Spring and Spring Boot - \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\/33223\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Spring and Spring Boot - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Introduction With the development of modern web applications, the importance of backend development is growing day by day. The Java-based Spring framework is one of the widely used backend technologies among many developers. In particular, Spring Boot is emerging as a tool that enables efficient development. In this course, we will take an in-depth look &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Spring and Spring Boot\"","og_url":"https:\/\/atmokpo.com\/w\/33223\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:39+00:00","article_modified_time":"2024-11-01T11:28:24+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\/33223\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33223\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Spring and Spring Boot","datePublished":"2024-11-01T09:14:39+00:00","dateModified":"2024-11-01T11:28:24+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33223\/"},"wordCount":789,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33223\/","url":"https:\/\/atmokpo.com\/w\/33223\/","name":"Spring Boot Backend Development Course, Spring and Spring Boot - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:39+00:00","dateModified":"2024-11-01T11:28:24+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33223\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33223\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33223\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Spring and Spring Boot"}]},{"@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\/33223","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=33223"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33223\/revisions"}],"predecessor-version":[{"id":33224,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33223\/revisions\/33224"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33223"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33223"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33223"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}