1.准备文件

2.工程中的pom

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="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.shao</groupId>
<artifactId>springmvc</artifactId>
<packaging>pom</packaging>
<version>1.0-SNAPSHOT</version>
<modules>
<module>test01</module>
<module>test02</module>
<module>test03</module>
</modules> <dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>5.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<version>10.0.12</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false </filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false </filtering>
</resource>
</resources>
</build>
</project>

3.HelloController

package com.shao.controller;

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping; @Controller
public class HelloController {
@RequestMapping("/hello")
public String hello(Model model){
//封装数据
model.addAttribute("msg", "HelloSpringMVC");
return "hello";
}
}

4.springmvc-servlet.xml

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="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-scan base-package="com.shao.controller"/>
<!--让spring不再处理静态文件 如 css mp4-->
<mvc:default-servlet-handler/>
<!--配置注解驱动-->
<mvc:annotation-driven/> <!--添加视图解析器-->
<bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<!--前缀-->
<property name="prefix" value="/WEB-INF/jsp/"/>
<!--后缀-->
<property name="suffix" value=".jsp"/>
</bean> </beans>

5.web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<!--1. 注册DispatcherServlet-->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--关联一个springMVC配置文件[name]-servlet.xml-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<!--启动级别1-->
<load-on-startup>1</load-on-startup>
</servlet>
<!--/ 匹配所有请求:(不包括.jsp)-->
<!--/* 匹配所有请求:(包括.jsp)-->
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>

6.配置Tomcat



7.配置工程

最新文章

  1. HTTPS那些事(一)HTTPS原理(转载)
  2. PHP如何将session保存到memcached中?如何分布式保存PHP session
  3. 解决 iOS 9.1 微信内置浏览器中html audio 不能自动播放的问题
  4. 《DSP using MATLAB》示例Example5.12
  5. Android ListView的理解(一)
  6. OpenJudge计算概论-鸡尾酒疗法
  7. Jquery不生效
  8. 项目中怎么去掉tomcat的猫
  9. Java 重入锁 ReentrantLock
  10. 01.由浅入深学习.NET CLR 基础系列之CLR 的执行模型
  11. javascript操作json
  12. 互联网二次进化—VR全景智慧城市
  13. Libevent库学习笔记
  14. shiro的DelegatingFilterProxy怎么找到ShiroFilterFactoryBean
  15. Go 编译原理实现计算器(测试驱动讲解)
  16. 2018蓝桥杯 省赛D题(测试次数)
  17. HGOI 20181101题解
  18. C#学习笔记(9)——委托(窗体传值)
  19. 读sru代码
  20. 【逆向知识】开发WinDBG扩展DLL

热门文章

  1. linux主机互信操作
  2. python常用内置函数(转载)
  3. django-admin和django-admin.py的区别
  4. ruby基本图片上传
  5. Prometheus之告警规则的编写
  6. 一套比较好用的公众号UI框架-weui
  7. 洛谷 P2120 [ZJOI2007] 仓库建设
  8. 从零开始的DIY智能浇水应用
  9. 【JavaScript基础】Js的定时器(你想看的原理也在哟)
  10. dhcpd:bad subnet number/mask combination. subnet