강의

멘토링

커뮤니티

BEST
Programming

/

Back-end

Spring MVC Part 2 - Backend Web Development Utilization Technology

You can understand and master all the web technologies required for web application development from the basics. In Part 2 of MVC, you can learn all the utilization technologies required for practical web development on top of the core principles and structure of Part 1 of MVC.

(5.0) 1,198 reviews

25,090 learners

  • yh
MVC
Spring

Reviews from Early Learners

What you will gain after the course

  • Java Backend Web Technologies

  • Spring Web Technology

  • Spring MVC

If you know the principle, you will see the core!
Kim Young-han's Spring MVC Utilization Guide 👨‍💻

📌 Please check before taking the class!

  • This lecture is the fifth in the "Complete Java Spring Mastery" series. First, check out the Spring Mastery Roadmap from Younghan Kim, the youngest technical director at Woowa Brothers. (Go to)

The most popular web frameworks

Most modern applications are web applications that operate in a web environment. Java backend developers often use Spring MVC when developing these web applications. Spring MVC is the most popular web framework, facilitating the rapid and easy development of complex web applications.


Why Backend Web Technologies Are Difficult to Learn

Java backend web technologies are vast and require extensive study. Spring MVC, in particular, offers extensive functionality and a complex architecture. To truly master these web technologies, you must first understand the core principles and structure of Spring MVC, then build on that foundation to master a vast array of web-based technologies one by one.

✅ Please check the player's knowledge.

Please check whether you understood the core principles and structure of Spring MVC required for web development through the previous lecture, <Spring MVC Part 1> .

1. From the beginning of Java web technology to the latest practical technology
2. Developing the MVC framework directly in code


Course Objectives

So far, we've been learning about Java backend and Spring MVC-based technologies. In this lecture, we'll build on what we've learned so far and learn essential practical skills .

In the lecture <Spring MVC Part 2>,

In Part 2 of Spring MVC, you can completely conquer a vast range of web utilization technologies such as view templates , messages , internationalization , validation , cookies , sessions , filters , interceptors , exception handling , type converters , and file uploads , which are essential for practical use, through examples, based on the Spring MVC learned in Part 1.

We will help you develop a wide range of web utilization technologies through practical example code on top of Spring MVC and its core principles and structures, and help you grow into a more in-depth backend web developer .

  • Objective : The goal of this course is to master all the web technologies required to develop practical backend web applications.
  • From Web Fundamentals to Practice : While this course contains extensive practical development material, it's structured in a step-by-step format so even developers without web application development experience can easily adapt. (You should first read Spring MVC Part 1 before learning Part 2.)
  • From concept to application : Rather than simply explaining how to use the technology, we explain the core principles and application methods of why this technology is needed and how it came to be.
  • Focused on practical examples : Learn all the steps required to develop web applications with Spring in a natural way through examples, and we will teach you practical best practices.
  • Conciseness : We've boldly excluded outdated Spring MVC features that aren't used in practice. This explanation focuses on the most commonly used features in modern practice.

Recommended Learners

Spring MVC
First-time developer

backend developer
job seekers

Spring MVC in depth
Developers in the field who want to understand

Web App with Spring
Developers who want to create


Contents covered

Timeleap

Thymeleaf is a server-side view template for backend developers. With Thymeleaf, backend developers can quickly and easily create dynamic HTML without the need for a separate frontend developer.

In this course, you will learn everything from the basic functions of Thymeleaf to integration with Spring and complex form management features such as check boxes, radio buttons, and select boxes, all through examples.

Message, Internationalization

As web applications grow larger and more complex, the various messages they use must be managed consistently and in a single location. For example, changing the word "product name" to "product name" requires editing the source code of numerous files. Spring's messaging functionality allows you to manage and modify these messages in one place.

Internationalization refers to the ability for a website to appear in English for English speakers and in Korean for Korean speakers. Spring already provides this internationalization functionality. In this lecture, we will learn about Spring's messaging and internationalization features step-by-step through real-world examples.

Validation

If a customer enters incorrect values in a form during membership registration and submits them to the server, the server must verify those values, re-present the form to the customer, and provide helpful guidance on what was entered incorrectly. This is a necessary feature for all web services.

In this lecture, we'll first develop these validation functions ourselves. We'll also use Spring's validation features, and we'll go further and learn step-by-step through examples, including Bean Validation, which conveniently performs validation with a single annotation.

Cookies, Sessions

HTTP is a stateless protocol. Therefore, concepts like cookies and sessions are necessary to maintain login functionality. In this lecture, we'll first create a login function using only cookies. We'll then examine security vulnerabilities and then create and implement sessions.

By creating sessions directly like this, you'll gain a deeper understanding of how cookies and sessions work. Additionally, you'll learn about and apply sessions provided by servlets.

Filter, Interceptor

We will learn about the Filter provided by Servlet and the Interceptor provided by Spring through examples.

First, we'll create a filter and interceptor to log all HTTP requests, the simplest of which is to use filters and interceptors. Later, we'll also create a filter and interceptor for authentication processing. By using both together, we'll clearly understand the pros and cons of each.

Exception handling

When learning web applications, exception handling is often the most difficult part to understand. This is because the servlet container (WAS) and Spring MVC each provide their own exception handling methods. In reality, these two mechanisms are intertwined, resulting in a complex exception handling mechanism. Therefore, it's extremely difficult for developers to accurately understand and use the internal workings of Spring and the servlet container when an exception occurs in a controller.

This lecture will explain exception handling in a step-by-step manner, from servlet container exception handling to Spring MVC exception handling. After attending, you'll gain a clear understanding of how server internals work when an actual exception occurs and what changes need to be made. Additionally, exception handling when using the API will be covered.

Spring type converter

Just as you need to convert characters to numbers or vice versa, developing applications often requires type conversion. For example, even if the string "10" is passed in an HTTP request, Spring can receive it as the integer 10 using @RequestParam . Spring provides a feature called type converters to support consistent type conversion.

Type converters are a frequently mentioned topic when learning Spring, but understanding how they actually work can be challenging. This lecture will provide a step-by-step understanding of type converters, from the basics to their practical application, through examples.

File upload

There are countless file upload examples available online. This lecture goes beyond simply explaining the file upload functionality. It delves into the protocols used for file uploads and explains the principles that make file uploads possible over HTTP. Furthermore, through examples, you'll learn the file upload functionality step-by-step, from servlets to convenient file upload methods provided by Spring.


Spring MVC Lecture Structure

The Spring MVC lecture is divided into two parts.
This lecture is Spring MVC Part 2 -
It is a technology that utilizes backend web development .

Spring MVC Part 1 -
Previous lectures on core backend web development technologies 

Cover the core concepts of Java web technology and Spring MVC, and understand the basic features of Spring MVC.
Part 1 introduces Java backend web technologies, then covers the full spectrum of web technologies, including Servlets, JSP, the MVC pattern, and the MVC framework. After understanding the background of web technologies, we'll solidify a solid foundation in the core concepts of Spring MVC. We'll then explore the basic features of Spring MVC and develop a web page capable of basic CRUD operations using Spring MVC.

Spring MVC Part 2 -
Current lecture on backend web development technology

Learn various techniques for utilizing Spring MVC.
Part 2 gradually develops a single example, learning various Spring MVC utilization techniques through code, including Thymeleaf, messaging, internationalization, validation, cookies, sessions, filters, interceptors, exception handling, common features, and extension points.


To be continued in the future
Spring Complete Conquest Series

We're preparing a series designed to help you master Spring completely. We'll focus on core Spring features used in real-world applications, boldly omitting obsolete or outdated features, and provide practical know-how.

Lecture order


Related Roadmap

Kim Young-han's Complete Spring Conquest Series
Spring Core Principles - Practical Applications This lecture includes:

Complete mastery of Spring Boot + JPA practices
Advanced Practical Training on the Latest Backend Technologies


Recommended for
these people

Who is this course right for?

  • Developers new to Spring MVC

  • Developer job seeker

  • Working developers who want to deeply understand Spring MVC

  • Developers who want to create web applications with Spring

Need to know before starting?

  • Java language

  • Spring Basics

  • HTTP Basic Concepts

  • Spring MVC Part 1 - Core technologies for backend web development

Hello
This is

567,433

Learners

38,116

Reviews

9,013

Answers

5.0

Rating

25

Courses

진짜 실무에 필요한 제대로 된 개발자가 될 수 있도록, 교육하는 것이 저의 목표입니다.

 

저의 개발 인생 이야기

EO 인터뷰 영상

개발바닥 - 시골 청년 개발왕 되다

취업과 이직에 대한 고민 해결

 

Curriculum

All

129 lectures ∙ (21hr 5min)

Course Materials:

Lecture resources
Published: 
Last updated: 

Reviews

All

1,198 reviews

5.0

1,198 reviews

  • wkdrn9701477님의 프로필 이미지
    wkdrn9701477

    Reviews 3

    Average Rating 5.0

    5

    100% enrolled

    I bought it right away because the lecture came out before I could breathe. Before the MVC2 part came out, I had to finish the JPA roadmap of the team leader first and was doing Spring Data JPA. I was learning JPA after using MyBatis and I was like, wow, this is a new world. The MVC2 part lecture came out so I watched the beginning part for a bit and finished the JPA roadmap and I was going to listen to the MVC2 part lecture again, but Timeleaf is so fun that I keep listening to it. ㅋㅋㅋ Now, I can't wait for the upcoming lectures to come out so much that I want to kidnap the team leader, tie him up in the basement, and make him just film the lectures. ㅠㅠ

    • yh
      Instructor

      Hahaha Dokkabei97, thank you so much for correcting my typos and leaving a review! After seeing your review, I think I should work harder ㅋㅋㅋㅋㅋ I'm rooting for you too. Fighting!

  • iamkimseunghyun님의 프로필 이미지
    iamkimseunghyun

    Reviews 34

    Average Rating 4.3

    5

    100% enrolled

    I finally finished the course. I think it was early November last year when I first started this course. At that time, I listened to the message internationalization, but I gave up because I didn't understand it well and didn't understand it well. Then, I wandered around YouTube and other places, trying various things that seemed fun, studying Java basics (I need to do more), and SQL (I need to do more), and I wandered around in circles. Then, last month, I started watching the Spring introduction series from the beginning to the end at a steady pace. When I did that, surprisingly, I was able to understand the course content well without any difficulties. However, I don't know if I should look at it strangely because I didn't have any questions beyond the course content. There were a lot of derivative questions, but since I didn't have any, I think I still have a long way to go. Anyway, I was very satisfied with the fact that I was able to follow the course content well and understand it. When I first watched Younghan's lectures without knowing anything, I thought, "Why is he teaching like this?" but now I'm used to it, I understand it, and I've definitely realized that it's a better style. This MVC 2 is the same. Now, books about spring that used to look scary in bookstores are starting to look friendly. Everyone knows that this is a course that builds a solid foundation and roots, but I feel embarrassed but proud that I am participating in this journey of a masterpiece that lives up to its name of complete conquest. Let's take a moment to catch our breath. In the past, I wondered when I would ever finish watching this, but now I only have one lecture left. I plan to take my time watching the last remaining lecture and then start over from the beginning for the practical part. As I write, I realize that this is not a class review, but rather a journey^^ Fighting to all of you who are studying together!

    • yh
      Instructor

      Mr. Mungil, you did a great job studying the parts you needed to fill in without giving up until the end. I'm rooting for you too!

  • hanulfullord8368님의 프로필 이미지
    hanulfullord8368

    Reviews 1

    Average Rating 5.0

    5

    100% enrolled

    Just reading the roadmap makes my heart swell.. A lecture that picks out exactly what I wanted to learn and teaches it A lecture that lets you read the references on your own Even a fun lecture Why don't you hurry up and listen?! Don't worry, just pay It's hard to buy time with money! But Kim Young-han's lecture does that!

    • yh
      Instructor

      In fact, I also think that the value of my lecture is buying time. I will organize and convey the core values that I think are important that I have accumulated in my practice so far, and I hope that you will learn them quickly and become developers at the next level. Thank you, hanul_kr.

  • yozzangga5016님의 프로필 이미지
    yozzangga5016

    Reviews 8

    Average Rating 5.0

    5

    100% enrolled

    I recommend this lecture to all developers who know and use Spring as 'magic'. It is a lecture that clearly shows that Spring is 'science'.

    • yh
      Instructor

      Wow! Such a well-expressed course review! Thank you, Sanghoon^^

  • omg님의 프로필 이미지
    omg

    Reviews 205

    Average Rating 5.0

    5

    100% enrolled

    I was busy with work and it took a long time to finish, but the content covered in this lecture was also very helpful. Thank you for always making good lectures, Younghan-nim😘

    • yh
      Instructor

      OMG, thank you for leaving a review despite your busy supporter activities. I will always support you. And I ask for your continued support^^!

    • OMG I really love S2 ㅠㅠㅋㅋ

$93.50

yh's other courses

Check out other courses by the instructor!

Similar courses

Explore other courses in the same field!