网页输入http://localhost:8080/hello,浏览器展示“Hello Spring MVC”。
1. 创建项目
选择Maven快速构建web项目,项目名称为case12-springmvc01。
2.配置Maven依赖
<projectxmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"><modelVersion>4.0.0</modelVersion><groupId>com.wfit.springmvc</groupId><artifactId>springmvc01</artifactId><version>1.0-SNAPSHOT</version><packaging>war</packaging><properties><project.build.sourceEncoding>UTF-8</project.build.sourceEncoding><maven.compiler.source>1.8</maven.compiler.source><maven.compiler.target>1.8</maven.compiler.target></properties><dependencies><!--spring mvc--><dependency><groupId>org.springframework</groupId><artifactId>spring-webmvc</artifactId><version>5.3.25</version></dependency><!--servlet--><dependency><groupId>javax.servlet</groupId><artifactId>javax.servlet-api</artifactId><version>3.1.0</version><!--provided仅在编译期间使用,项目打包不包含这个依赖,并且这个依赖不会被传递--><scope>provided</scope></dependency></dependencies></project>
3. 更新Maven仓库
4. 创建java和resources目录
src.main路径下,执行new – Directory操作,选择java、resources后,执行回车键。
5. 创建Spring MVC配置文件
src.main.resources下创建spring-mvc.xml文件。
<beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd"><!--开启注解--><context:component-scanbase-package="com.wfit"/><!--启用mvc(适配器、映射器)--><mvc:annotation-driven></mvc:annotation-driven><!--视图解析器--><beanclass="org.springframework.web.servlet.view.InternalResourceViewResolver"><!--逻辑视图存放位置--><propertyname="prefix"value="/pages/"/><!--逻辑视图后缀--><propertyname="suffix"value=".jsp"/></bean></beans>
6. 配置web.xml
在web.xml中配置DispatcherServlet。
<web-app><!--配置前端控制器DispatcherServlet--><servlet><servlet-name>dispatcherServlet</servlet-name><servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class><!--加载Spring MVC配置文件--><init-param><param-name>contextConfigLocation</param-name><param-value>classpath:spring-mvc.xml</param-value></init-param><!--启动容器时候加载servlet--><load-on-startup>1</load-on-startup></servlet><servlet-mapping><servlet-name>dispatcherServlet</servlet-name><!--表示拦截所有请求--><url-pattern>/</url-pattern></servlet-mapping></web-app>
7. 创建HelloController类
src.main.java目录下创建com.wfit.hello目录,在com.wfit.hello目录下创建HelloController类。
@Controller public class HelloController { @RequestMapping("/hello") public String hello(){ //跳转到/pages/hello.jsp页面 return "hello"; } }
8. 创建hello.jsp页面
src.main.webapp目录下创建pages目录,在pages目录下创建hello.jsp类。
<%@pagecontentType="text/html;charset=UTF-8"language="java"%><html><head><title>hello</title></head><body> hello Spring MVC! </body></html>
9. 部署项目
将项目部署到Tomcat。
- 第一步
- 第二步
- 第三步
- 第四步
- 第五步
- 第六步
10. 启动项目
11. 访问项目
网页输入:http://localhost:8080/hello
编辑