Spring MVC is the most popular Java web framework based on the Model-View-Controller (MVC) design pattern. In this chapter, you will look at developing web applications with Spring Boot using the power of Spring MVC. In the previous chapter, you built a basic Hello World application. In this chapter, you will build a simple blog application where users can post blog articles.
You will build upon this application ...