From the course: Spring Boot 2.0 Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Employing MVC in Spring Boot

Employing MVC in Spring Boot

From the course: Spring Boot 2.0 Essential Training

Start my 1-month free trial

Employing MVC in Spring Boot

- [Instructor] Building web applications is probably the most common use of Spring Boot, at least at the very beginning. And that's where we're going to start with our project as we actually do some building. Spring Boot's web applications are based on the Spring MVC pattern. Now Spring Boot provides default configurations for Spring MVC. The paradigm for Spring MVC is based on the Model-View-Controller design pattern. And when you bring a template engine into your project you're also going to get all of the view resolvers needed in order to move away from traditional JSP and into more modern template engines. You're also going to get some static file resolvers. And we've already seen one of those in the way that we did the index.HTML page in the last chapter. But in addition to a traditional index.HTML, you're also going to get access to CSS and JavaScript through the static folder. And really anything that you put in the…

Contents