1.新建一个maven web项目
file-new-project 进入选项卡 左侧 maven -Create form archetype【v】 -maven archetype webApp
2.导入依赖
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.3.13</version>
</dependency>
3.新建java和resouce文件夹
4.在web.xml文件中
删除原有的schema。
添加
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<servlet>
<servlet-name>mvc</servlet-name>
<!-- 处理请求都会经过这个servlet(即DispatcherServlet) -->
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 让Servlet在启动的时候加载该配置文件 -->
<init-param>
<!-- 上下文配置文件的位置-->
<param-name>contextConfigLocation</param-name>
<!-- 配置文件的位置-->
<param-value>classpath:META-INF/spring-mvc.xml</param-value>
</init-param>
<!--
1.作用是让web容器,在启动的时候就初始化 Servlet, 然后让其读取 spring-mvc.xml 配置文件。
-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc</servlet-name>
<!-- “/” 表示 过滤所有请求,都会经过 DispatcherServlet 处理 -->
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
5.在resouce中新建 META-INF 文件夹 并在META-INF新建spring-mvc.xml文件
6.在spring-mvc.xml文件中
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!-- 1、扫描包内及其子包内的所有“类”(不包含接口),并为添加了@Service、@Component、@Controller、@Repository修饰的类创建对象并存入IOC容器 -->
<!-- base-package 基础包。可以使用通配符 在java包内部的org下面example里面有 @controller 注解的类放入IOC容器-->
<context:component-scan base-package="org.example"></context:component-scan>
<!-- 视图解析器 -->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!-- “/” 前缀是的/都解析 “.jsp”后缀是.jsp的解析 -->
<property name="prefix" value="/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
</beans>
7.配置tomcat
7-1.deploment(开发)- +(加号) – artifact(生成物即项目)- war exploded(展开部署)
7-2.在application context设置 项目 访问名
7-3.启动tomcat
- 控制层 代码
//被分发器扫描的类 即:DispatcherServlet
@Controller
public class FirstController {
/**
* @RequestMapping是请求映射, 填入上下文路径
* http://localhost:8080/mvc/first/
*/
@RequestMapping("/first")
public String first() {
System.out.println("This is my first SpringMVC application.");
return "index";//即 index.jsp
}
}
9.访问URL
localhost:8080/mvc/first
注:完整目录结构
版权声明:本文为qq_43894825原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。