How to Implement a Web Program Using Spring MVC in Java

Spring MVC is a lightweight Java based MVC (Model View Controller) framework used for developing web applications. It is part of the Spring framework and provides a structure and pattern for developing web applications. Spring MVC decouples applications by dividing them into models, views, and controllers, making development, testing, and maintenance of applications simpler and more efficient. The main advantages of Spring MVC are as follows: 1. Flexibility: Spring MVC provides high flexibility, allowing developers to choose to use different view technologies, such as JSP, Thymleaf, etc. 2. High Scalability: Spring MVC uses an interface oriented programming model, allowing developers to easily extend framework functionality to meet specific business needs. 3. Easy integration: Spring MVC can seamlessly integrate with other frameworks and technologies (such as Spring, Hibernate, etc.), making it easy for developers to build complex applications. 4. Powerful validation and data binding support: Spring MVC provides powerful data validation and binding support, making it easy for developers to develop reliable web applications. 5. Good testability: The design pattern of Spring MVC makes it easy for developers to conduct unit testing and Integration testing, improving code quality and maintainability. The sample code for Spring MVC is as follows: 1. Create a Spring MVC project (using Maven) Firstly, create a Spring MVC project based on Maven. Add the following dependencies to the pom.xml file: <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.9</version> </dependency> </dependencies> 2. Create Controller Create a Java class called HelloController to handle HTTP requests and responses: import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class HelloController { @GetMapping("/hello") @ResponseBody public String sayHello() { return "Hello, Spring MVC!"; } } 3. Configure DispatcherServlet Configure DispatcherServlet in web.xml (or webapp/WEB INF/web. xml): <web-app> <display-name>Spring MVC Example</display-name> <servlet> <servlet-name>dispatcherServlet</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/springmvc-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcherServlet</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app> 4. Configure Spring MVC Create a springmvc servlet.xml file in the/WEB INF directory and add the following configuration: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <mvc: annotation driven/><-- Enable annotation driver --> <context: component scan base package="com. example"/><-- Scan Controller Class --> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="prefix" value="/WEB-INF/views/"/> <property name="suffix" value=".jsp"/> </bean> </beans> 5. Create JSP view Create a hello. JSP file in the/WEB INF/views directory and add the following content: jsp <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <title>Hello, Spring MVC!</title> </head> <body> <h1>${message}</h1> </body> </html> 6. Run the application program Deploy and launch applications on Tomcat or other Java Web enabled servers to access http://localhost:8080/your -App name/hello to see 'Hello, Spring MVC!'. The above is a simple example of using Spring MVC to implement a web program. For more detailed information and usage of Spring MVC, please refer to the official documentation of Spring MVC: https://docs.spring.io/spring-framework/docs/current/reference/html/web.html