강의

멘토링

로드맵

BEST
Programming

/

Back-end

[Revised 2023-11-27] Developing RESTful Web Services using Spring Boot 3.x

This course covers the process of developing a RESTful Web Services application using Spring Boot, and you can learn the basic knowledge required for designing a REST API.

(4.8) 454 reviews

4,855 learners

  • Dowon Lee
Spring Boot
REST API

Reviews from Early Learners

What you will learn!

  • Spring Boot

  • REST API

  • RESTful services

  • JPA

  • OAS 3.0 (Swagger Specification)

The Bible of Spring Boot RESTful API Introduction!

이도원 / Dowon Lee - Spring Boot (스프링부트) RESTful Web API

This course is designed to help you learn about designing RESTful services and implementing and operating them using Spring Cloud APIs
in the process of developing Microservices with Spring Boot and Spring Cloud.


📝 Course Introduction

# What are Microservices?

"Microservices are a software development technique —a variant of the service-oriented architecture (SOA) structural style— that arranges an application as a collection of loosely coupled services. In a microservices architecture, services are fine-grained and the protocols are lightweight." - wikipedia

The term microservices began to be used after a software architecture workshop was held in Venice in 2011. By adopting microservices development approaches instead of traditional monolithic development methods for application construction, cost reduction and increased efficiency have been achieved not only in development but also in maintenance, and customer requirements can now be processed quickly. Along with the popularity of these microservices, the RESTful development approach is also being widely used.

Microservice Architecture refers to a development and operational approach where applications that were traditionally developed and operated as a single large unit are broken down into dozens, hundreds, or even thousands of small service units. To develop these microservices, each service must be able to be developed independently, and they should meet the requirements of Polyglot Programming, which allows for selecting the optimal development language and database for each service.

For data communication between applications developed on different platforms like this, RESTful services that use the standardized HTTP protocol are widely used.

Spring Boot is a development tool and Spring Project that supports easy development of standalone, production-ready Spring-based applications. Using Spring Boot, you can easily create standalone Spring applications that are ready to run, minimize configuration work for the Spring framework and other third-party libraries, and invest more time in business logic. Additionally, by utilizing Spring Boot's Starter components, you can easily configure tasks related to statistics, health checks, external configuration, and other requirements needed for production deployment.

Our ultimate goal is to design and develop an application
designed with a microservices architecture
using Spring Boot and Spring Cloud.


✏️ Course Curriculum

💡 Through this course, you can learn the overall process of designing, implementing, and operating web services using Microservice Architecture with Spring Boot and Spring Cloud. (View Roadmap)

First Course (Current Lecture)

Learn the process from creating a project with Spring Boot to develop REST APIs, through designing REST APIs and implementing applications.

Second Course (Continuing Lecture)

Learn how to design and build Microservice Architecture using Spring Boot and Spring Cloud.

📢 Please check before taking the course

  • The development tools and libraries used in the course are as follows.
    • Java 17 + IntelliJ IDEA + Postman 
    • Spring Boot 3.1.5(Spring Boot Security, Actuator, Starter, Spring Data JPA 등)
    • OpenAPI Specification 3.0  
    • Swagger UI 5.2.0
    • H2 2.1.214
  • The practice code and materials (PDF) used in the lecture can be found on Github

Recommended for
these people

Who is this course right for?

  • For those who want to develop web applications using Spring Boot

  • For those who want to develop REST API applications

  • For those who want to develop microservices

Need to know before starting?

  • Java

  • Web Application

  • Basic knowledge of Spring framework

Hello
This is

29,524

Learners

1,586

Reviews

1,355

Answers

4.8

Rating

8

Courses

저는 IT 엔지니어입니다. 언젠가 직업란에 "회사원?", "개발자?", "강사?" 어떤 단어를 선택해야 할 지 고민이 되었던 때가 있었습니다. 그러다가, IT 엔지니어라는 표현이 제가 잘 어울리는 직업명이라는 생각이 들어 지금까지도 직업란에는 "IT 엔지니어"라고 적고 있습니다.

직업이라는 것은 자신의 일을 나타내는 것이고, 일이라는 것은 재미있고, 도움이 되는 일이면 좋겠다는 생각을 가지고 있습니다. 누구나 다 원하는대로 일을 하며 살수는 없지만, 저는 제가 하는 있는 이 일을 좋아하는 있고, 잘하고 싶어하는 사람입니다. 개발자로써, 강사로써, 컨설턴트로써의 역할을 해 오면서, 매번 새롭게 출시되고 변화하는 IT 신기술을 따라가기에 급급하지만, 그래도, 남들보다 조금이라도 먼저 접하고, 전파하고, 사용하고 싶은 사람 중 한명입니다. 

최근 관심을 가지고 있는 분야는 온라인 교육 컨설팅입니다. 그리고 관심있는 기술은 Cloud Native Architecture, Blockchain, Machine Learning, Kafka, Kuberbetes 등입니다. 이러한 기술은 실제로 강의도 하고 있고 업무에 적용해서 사용도 하고 있습니다. 하지만, 워낙 방대한 주제이다 보니, 아직까지도 계속 공부하고 있습니다.

머리속에 가지고 있는 것은 진정한 지식이 아니라고 합니다. 저는 제가 가진 지식과 경험을 다양한 방벙을 통해 공유하려 합니다. 그리고, 새로운 분야, 새로운 기술에 계속 도전하고 있는 IT 엔지니어가 될 것입니다.  

 

 

  • ) 엔제이원컴퍼니 대표 

  • ) 동국대학교 국제정보대학원 정보보호학과 대우교수

  • ) JP Morgan Chase AMJ Tech consultant (일본)

  • ) 삼성 SDS CMS 사업본부 책임 엔지니어

 

 

Curriculum

All

52 lectures ∙ (6hr 57min)

Published: 
Last updated: 

Reviews

All

454 reviews

4.8

454 reviews

  • kang1161님의 프로필 이미지
    kang1161

    Reviews 1

    Average Rating 5.0

    5

    91% enrolled

    It's very good for basic introduction to Rest API. Thank you. It was exactly the lecture I wanted. When Swagger is added in SpringBoot2.2 or higher, a HATEOS usage error occurs. I wonder if there are people who struggle like me... NoUniqueBeanDefinitionException occurs Solution: Add the following to the Swagger configuration file class. @Primary @Bean public LinkDiscoverers discoverers() { List<LinkDiscoverer> plugins = new ArrayList<>(); plugins.add(new CollectionJsonLinkDiscoverer()); return new LinkDiscoverers(SimplePluginRegistry.create(plugins)); }

    • omg님의 프로필 이미지
      omg

      Reviews 205

      Average Rating 5.0

      5

      91% enrolled

      There are many lectures within Infraon that cost more than 10,000 won per hour, and many of them are very expensive, but compared to those lectures, I think this lecture is quite cheap and its quality is not lacking at all compared to expensive lectures. I look forward to the next lecture! Thank you for the great lecture :)

      • rlaxowns20068222님의 프로필 이미지
        rlaxowns20068222

        Reviews 1

        Average Rating 3.0

        3

        89% enrolled

        Content: Top Preparation: Top It seems like you prepared a lot to the point where there is no stuttering at all. It is a very good lecture. Biggest drawback: The sound is so, so, so, so, so small that I wonder how someone with a good voice recorded it. It is so small that it is stressful. Please pay attention to it from the next lecture. ---After the lecture--- I listened really, really, really well. You have a teaching ability that is comparable to other lectures. I quickly ran it twice and organized it on Git. I learned a lot without even knowing it. Since there are no consecutive lectures, I will go listen to other lectures. I will buy it and listen to it again when the lecture opens in the future. I am worried about being compared to instructor DAWON when I go to other lectures.ㅎㅎ Anyway, I will listen well. ps. Please set the sound so that it can be heard well even at volume 30! I set the sound to 100 for the lecture and listen, and then my ears will burst when other alarms go offㅜㅜ.

        • kenneth
          Instructor

          Hello, this is Lee Do-won. After recording the lecture, I discussed it with the manager in charge of Inflearn. Since there was no designation for classes with medium or higher volumes during testing on Windows and Mac environments, I released the lecture as is. I apologize for the inconvenience, and I will pay attention when releasing lectures in the future. Thank you.

      • zerowest10016015님의 프로필 이미지
        zerowest10016015

        Reviews 3

        Average Rating 5.0

        5

        91% enrolled

        It was solid. If you only have basic knowledge of Spring, it seems like a great introductory course to Boot REST API!! I will definitely come and watch the follow-up course.

        • ppojin님의 프로필 이미지
          ppojin

          Reviews 1

          Average Rating 5.0

          5

          100% enrolled

          I heard it well. I didn't know much about Spring Boot until now, but it has so many functions, and after using them one by one, I think I now know a little bit about what Spring Boot is and how to use it.

          $23.10

          Dowon Lee's other courses

          Check out other courses by the instructor!

          Similar courses

          Explore other courses in the same field!