{"id":33169,"date":"2024-11-01T09:14:16","date_gmt":"2024-11-01T09:14:16","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=33169"},"modified":"2024-11-01T11:28:38","modified_gmt":"2024-11-01T11:28:38","slug":"spring-boot-backend-development-course-understanding-spring-boot-3-code","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/33169\/","title":{"rendered":"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code"},"content":{"rendered":"<p><body><\/p>\n<p>Hello! In this course, we will understand the code of Spring Boot 3 and learn in detail about backend development methodologies. Spring Boot is a Java-based framework that helps you build web applications quickly and easily. Through this course, we will cover a wide range of topics from the basic concepts of Spring Boot to advanced features.<\/p>\n<h2>1. What is Spring Boot?<\/h2>\n<p>Spring Boot is an extension of the Spring Framework and is a tool that makes it easier to set up and deploy traditional Spring applications. Typically, setting up a Spring application requires many configuration files and XML setups, but Spring Boot simplifies this process through Auto Configuration and Starter Dependencies.<\/p>\n<h2>2. Main features of Spring Boot 3<\/h2>\n<ul>\n<li>Auto-configuration: Spring Boot automatically configures the necessary Beans based on the classpath.<\/li>\n<li>Starter dependencies: Provides a convenient way to manage multiple dependencies.<\/li>\n<li>Actuator: Offers tools to monitor the state and performance of the application.<\/li>\n<li>Testing support: Spring Boot helps write test units easily.<\/li>\n<li>Spring WebFlux: Supports reactive programming to build asynchronous applications.<\/li>\n<\/ul>\n<h2>3. Setting up Spring Boot 3<\/h2>\n<p>To use Spring Boot, you first need to set up the development environment. In this section, we will learn how to create a Spring Boot project.<\/p>\n<h3>3.1. Using Spring Initializr<\/h3>\n<p>To start a Spring Boot project, you can use Spring Initializr. This web-based tool allows you to set up all the necessary dependencies.<\/p>\n<pre><code>https:\/\/start.spring.io<\/code><\/pre>\n<p>By entering the project&#8217;s metadata and adding the required dependencies at the above link, you can download the basic skeleton of a Spring Boot project.<\/p>\n<h3>3.2. IDE setup<\/h3>\n<p>Load the downloaded project into an IDE (Integrated Development Environment, e.g., IntelliJ IDEA or Eclipse). This process will automatically set up dependency management through Maven or Gradle.<\/p>\n<h2>4. Spring Boot application structure<\/h2>\n<p>A Spring Boot project has the following structure:<\/p>\n<pre><code>\ncom.example.demo\n\u251c\u2500\u2500 DemoApplication.java\n\u251c\u2500\u2500 controller\n\u2502   \u251c\u2500\u2500 HelloController.java\n\u251c\u2500\u2500 service\n\u2502   \u251c\u2500\u2500 HelloService.java\n\u2514\u2500\u2500 repository\n    \u251c\u2500\u2500 HelloRepository.java\n<\/code><\/pre>\n<p>Each folder serves the following roles:<\/p>\n<ul>\n<li><strong>controller<\/strong>: Contains controllers that handle client requests.<\/li>\n<li><strong>service<\/strong>: Contains service classes that handle business logic.<\/li>\n<li><strong>repository<\/strong>: Contains repositories that manage interactions with the database.<\/li>\n<\/ul>\n<h2>5. Creating a basic web application<\/h2>\n<p>Now, let&#8217;s create a simple web application. This application will create a REST API that returns a &#8220;Hello, World!&#8221; message.<\/p>\n<h3>5.1. HelloController.java<\/h3>\n<p>Write the controller class as follows:<\/p>\n<pre><code>\npackage com.example.demo.controller;\n\nimport org.springframework.web.bind.annotation.GetMapping;\nimport org.springframework.web.bind.annotation.RestController;\n\n@RestController\npublic class HelloController {\n    @GetMapping(\"\/hello\")\n    public String sayHello() {\n        return \"Hello, World!\";\n    }\n}\n<\/code><\/pre>\n<h3>5.2. DemoApplication.java<\/h3>\n<p>The main application class is as follows:<\/p>\n<pre><code>\npackage com.example.demo;\n\nimport org.springframework.boot.SpringApplication;\nimport org.springframework.boot.autoconfigure.SpringBootApplication;\n\n@SpringBootApplication\npublic class DemoApplication {\n    public static void main(String[] args) {\n        SpringApplication.run(DemoApplication.class, args);\n    }\n}\n<\/code><\/pre>\n<h3>5.3. Running the application<\/h3>\n<p>Now run the application and enter <code>http:\/\/localhost:8080\/hello<\/code> in your web browser to see the &#8220;Hello, World!&#8221; message.<\/p>\n<h2>6. Dependency management in Spring Boot<\/h2>\n<p>Spring Boot manages dependencies through Maven or Gradle. We will use Maven by default.<\/p>\n<h3>6.1. Modifying pom.xml<\/h3>\n<p>Add the necessary dependencies to the project&#8217;s <code>pom.xml<\/code> file. Below are the basic dependencies for a RESTful service:<\/p>\n<pre><code>\n&lt;project xmlns=\"http:\/\/maven.apache.org\/POM\/4.0.0\"\n    xmlns:xsi=\"http:\/\/www.w3.org\/2001\/XMLSchema-instance\"\n    xsi:schemaLocation=\"http:\/\/maven.apache.org\/POM\/4.0.0 http:\/\/maven.apache.org\/xsd\/maven-4.0.0.xsd\"&gt;\n    &lt;modelVersion&gt;4.0.0&lt;\/modelVersion&gt;\n\n    &lt;groupId&gt;com.example&lt;\/groupId&gt;\n    &lt;artifactId&gt;demo&lt;\/artifactId&gt;\n    &lt;version&gt;0.0.1-SNAPSHOT&lt;\/version&gt;\n    &lt;packaging&gt;jar&lt;\/packaging&gt;\n\n    &lt;name&gt;demo&lt;\/name&gt;\n    &lt;description&gt;Demo project for Spring Boot&lt;\/description&gt;\n\n    &lt;parent&gt;\n        &lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\n        &lt;artifactId&gt;spring-boot-starter-parent&lt;\/artifactId&gt;\n        &lt;version&gt;3.0.0&lt;\/version&gt;\n        &lt;relativePath\/&gt; &lt;!-- lookup parent from repository --&gt;\n    &lt;\/parent&gt;\n\n    &lt;properties&gt;\n        &lt;jdk.version&gt;17&lt;\/jdk.version&gt;\n    &lt;\/properties&gt;\n\n    &lt;dependencies&gt;\n        &lt;dependency&gt;\n            &lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\n            &lt;artifactId&gt;spring-boot-starter-web&lt;\/artifactId&gt;\n        &lt;\/dependency&gt;\n    &lt;\/dependencies&gt;\n\n    &lt;build&gt;\n        &lt;plugins&gt;\n            &lt;plugin&gt;\n                &lt;groupId&gt;org.springframework.boot&lt;\/groupId&gt;\n                &lt;artifactId&gt;spring-boot-maven-plugin&lt;\/artifactId&gt;\n            &lt;\/plugin&gt;\n        &lt;\/plugins&gt;\n    &lt;\/build&gt;\n&lt;\/project&gt;\n<\/code><\/pre>\n<h2>7. Integrating with a database<\/h2>\n<p>You can implement simple CRUD (Create, Read, Update, Delete) functionality using Spring Boot. In this section, we will explain how to integrate with a database using H2.<\/p>\n<h3>7.1. Adding H2 database dependency<\/h3>\n<p>The H2 database is an in-memory database suitable for testing and development. Add the following dependency to <code>pom.xml<\/code>:<\/p>\n<pre><code>\n&lt;dependency&gt;\n    &lt;groupId&gt;com.h2database&lt;\/groupId&gt;\n    &lt;artifactId&gt;h2&lt;\/artifactId&gt;\n    &lt;scope&gt;runtime&lt;\/scope&gt;\n&lt;\/dependency&gt;\n<\/code><\/pre>\n<h3>7.2. Database configuration<\/h3>\n<p>Now modify the <code>application.properties<\/code> file to add the database configuration:<\/p>\n<pre><code>\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=\n<\/code><\/pre>\n<h3>7.3. Defining the entity class<\/h3>\n<p>Next, create a User entity class that can store simple user information:<\/p>\n<pre><code>\npackage com.example.demo.model;\n\nimport jakarta.persistence.Entity;\nimport jakarta.persistence.GeneratedValue;\nimport jakarta.persistence.GenerationType;\nimport jakarta.persistence.Id;\n\n@Entity\npublic class User {\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Long id;\n\n    private String name;\n\n    private String email;\n\n    \/\/ getters and setters\n}\n<\/code><\/pre>\n<h3>7.4. Creating the repository<\/h3>\n<p>Now define the UserRepository interface that provides CRUD functionality for the User entity:<\/p>\n<pre><code>\npackage com.example.demo.repository;\n\nimport com.example.demo.model.User;\nimport org.springframework.data.jpa.repository.JpaRepository;\n\npublic interface UserRepository extends JpaRepository<User, Long> {\n}\n<\/code><\/pre>\n<h2>8. Implementing the RESTful API<\/h2>\n<p>Finally, let&#8217;s implement the CRUD API for the User entity.<\/p>\n<h3>8.1. UserController.java<\/h3>\n<p>Write the controller that provides the RESTful API as follows:<\/p>\n<pre><code>\npackage com.example.demo.controller;\n\nimport com.example.demo.model.User;\nimport com.example.demo.repository.UserRepository;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.http.HttpStatus;\nimport org.springframework.http.ResponseEntity;\nimport org.springframework.web.bind.annotation.*;\n\nimport java.util.List;\n\n@RestController\n@RequestMapping(\"\/api\/users\")\npublic class UserController {\n\n    @Autowired\n    private UserRepository userRepository;\n\n    @GetMapping\n    public List<User> getAllUsers() {\n        return userRepository.findAll();\n    }\n\n    @PostMapping\n    public ResponseEntity<User> createUser(@RequestBody User user) {\n        return new ResponseEntity<>(userRepository.save(user), HttpStatus.CREATED);\n    }\n\n    @GetMapping(\"\/{id}\")\n    public ResponseEntity<User> getUserById(@PathVariable(value = \"id\") Long userId) {\n        return userRepository.findById(userId)\n                .map(user -> new ResponseEntity<>(user, HttpStatus.OK))\n                .orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND));\n    }\n\n    @PutMapping(\"\/{id}\")\n    public ResponseEntity<User> updateUser(@PathVariable(value = \"id\") Long userId, @RequestBody User userDetails) {\n        return userRepository.findById(userId)\n                .map(user -> {\n                    user.setName(userDetails.getName());\n                    user.setEmail(userDetails.getEmail());\n                    return new ResponseEntity<>(userRepository.save(user), HttpStatus.OK);\n                })\n                .orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND));\n    }\n\n    @DeleteMapping(\"\/{id}\")\n    public ResponseEntity<Void> deleteUser(@PathVariable(value = \"id\") Long userId) {\n        return userRepository.findById(userId)\n                .map(user -> {\n                    userRepository.delete(user);\n                    return new ResponseEntity<Void>(HttpStatus.NO_CONTENT);\n                })\n                .orElse(new ResponseEntity<>(HttpStatus.NOT_FOUND));\n    }\n}\n<\/Void><\/void><\/User><\/User><\/User><\/User><\/code><\/pre>\n<h2>9. Testing and deployment<\/h2>\n<p>Spring Boot allows you to perform tests using JUnit. Efficiently writing tests can enhance the quality of the application.<\/p>\n<h3>9.1. Writing test code<\/h3>\n<p>Let&#8217;s write some simple test code:<\/p>\n<pre><code>\npackage com.example.demo;\n\nimport com.example.demo.controller.UserController;\nimport com.example.demo.model.User;\nimport com.example.demo.repository.UserRepository;\nimport org.junit.jupiter.api.BeforeEach;\nimport org.junit.jupiter.api.Test;\nimport org.mockito.InjectMocks;\nimport org.mockito.Mock;\nimport org.mockito.MockitoAnnotations;\n\nimport static org.mockito.Mockito.*;\n\npublic class UserControllerTest {\n\n    @InjectMocks\n    private UserController userController;\n\n    @Mock\n    private UserRepository userRepository;\n\n    @BeforeEach\n    void setUp() {\n        MockitoAnnotations.openMocks(this);\n    }\n\n    @Test\n    void getAllUsers() {\n        userController.getAllUsers();\n        verify(userRepository, times(1)).findAll();\n    }\n\n    @Test\n    void createUser() {\n        User user = new User();\n        user.setName(\"Test User\");\n        when(userRepository.save(user)).thenReturn(user);\n\n        userController.createUser(user);\n        verify(userRepository, times(1)).save(user);\n    }\n}\n<\/code><\/pre>\n<h3>9.2. Application deployment<\/h3>\n<p>Spring Boot applications can be packaged and deployed as standalone JAR files. You can build it using Maven:<\/p>\n<pre><code>mvn clean package<\/code><\/pre>\n<p>Then you can start the server by running the created JAR file located in the <code>target<\/code> directory:<\/p>\n<pre><code>java -jar demo-0.0.1-SNAPSHOT.jar<\/code><\/pre>\n<h2>10. Spring Boot microservices architecture<\/h2>\n<p>Spring Boot is very useful for building a microservices architecture. You can build multiple independent services and configure them to communicate with each other.<\/p>\n<h3>10.1. Advantages of microservices<\/h3>\n<ul>\n<li>Independent deployment: Each service can be deployed independently.<\/li>\n<li>Scalability: Services can be scaled according to their needs.<\/li>\n<li>Flexibility: There is flexibility in the technology stack.<\/li>\n<\/ul>\n<h2>11. FAQ<\/h2>\n<h3>11.1. What basic knowledge is required to learn Spring Boot?<\/h3>\n<p>A basic understanding of the Java programming language and the Spring Framework is needed.<\/p>\n<h3>11.2. What recommended resources are there for learning Spring Boot?<\/h3>\n<p>The official Spring documentation, online courses, and related books are recommended.<\/p>\n<h2>12. Conclusion<\/h2>\n<p>In this course, we explored the basic structure and features of Spring Boot 3. Spring Boot is a very powerful framework that provides the advantage of rapidly developing various applications. I hope you continue to learn deeply and acquire more features!<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello! In this course, we will understand the code of Spring Boot 3 and learn in detail about backend development methodologies. Spring Boot is a Java-based framework that helps you build web applications quickly and easily. Through this course, we will cover a wide range of topics from the basic concepts of Spring Boot to &hellip; <a href=\"https:\/\/atmokpo.com\/w\/33169\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Spring Boot Backend Development Course, Understanding Spring Boot 3 Code&#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-33169","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, Understanding Spring Boot 3 Code - \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\/33169\/\" \/>\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, Understanding Spring Boot 3 Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Hello! In this course, we will understand the code of Spring Boot 3 and learn in detail about backend development methodologies. Spring Boot is a Java-based framework that helps you build web applications quickly and easily. Through this course, we will cover a wide range of topics from the basic concepts of Spring Boot to &hellip; \ub354 \ubcf4\uae30 &quot;Spring Boot Backend Development Course, Understanding Spring Boot 3 Code&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/33169\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:14:16+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:28:38+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=\"7\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code\",\"datePublished\":\"2024-11-01T09:14:16+00:00\",\"dateModified\":\"2024-11-01T11:28:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/\"},\"wordCount\":763,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Spring Boot backend development\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/\",\"url\":\"https:\/\/atmokpo.com\/w\/33169\/\",\"name\":\"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:14:16+00:00\",\"dateModified\":\"2024-11-01T11:28:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/33169\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/33169\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code\"}]},{\"@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, Understanding Spring Boot 3 Code - \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\/33169\/","og_locale":"ko_KR","og_type":"article","og_title":"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Hello! In this course, we will understand the code of Spring Boot 3 and learn in detail about backend development methodologies. Spring Boot is a Java-based framework that helps you build web applications quickly and easily. Through this course, we will cover a wide range of topics from the basic concepts of Spring Boot to &hellip; \ub354 \ubcf4\uae30 \"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code\"","og_url":"https:\/\/atmokpo.com\/w\/33169\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:14:16+00:00","article_modified_time":"2024-11-01T11:28:38+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":"7\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/33169\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/33169\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code","datePublished":"2024-11-01T09:14:16+00:00","dateModified":"2024-11-01T11:28:38+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/33169\/"},"wordCount":763,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Spring Boot backend development"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/33169\/","url":"https:\/\/atmokpo.com\/w\/33169\/","name":"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:14:16+00:00","dateModified":"2024-11-01T11:28:38+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/33169\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/33169\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/33169\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Spring Boot Backend Development Course, Understanding Spring Boot 3 Code"}]},{"@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\/33169","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=33169"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33169\/revisions"}],"predecessor-version":[{"id":33170,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/33169\/revisions\/33170"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=33169"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=33169"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=33169"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}