1、配置前端控制器-DispatcherServlet

在web.xml中配置DispatcherServlet

<?xml version="1.0" encoding="UTF-8"?>
<web-app  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xmlns="http://xmlns.jcp.org/xml/ns/javaee"
          xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
          id="WebApp_ID" version="3.1">

    <!--配置SpringMVC的核心控制器,基于 DispatcherServlet-->
    <servlet>
        <servlet-name>dispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath*:spring-mvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!--指定进入SpringMVC核心控制器的URL-->
    <servlet-mapping>
        <servlet-name>dispatcherServlet</servlet-name>
        <!--目录下所有的URL,包括CSS、图片等静态资源,但是不包括其他的Servlet
            注意:此处不要配置/*,/*一般是拦截器使用
        -->
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

2、配置springmvc.xml文件

在src/main/resources下新增spring-mvc.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"
       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">

    <!--配置扫描包-->
    <context:component-scan base-package="com.hliedu"/>

    <!--指定视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <!--视图解析器前缀-->
        <property name="prefix" value="/view/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
</beans>

3、编写Controller类

新建com.hliedu.springmvc.HelloController

package com.hliedu.springmvc;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class HelloController {

    @RequestMapping(value={"/","index"})
    public String index(){
        return "hello";
    }
}

4、编写JSP文件

在webapp下新建view文件夹,在view文件夹下新建hello.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>hello spring mvc</title>
</head>
<body>
    <h1>Spring MVC</h1>
</body>
</html>

5、Tomcat配置

在这里插入图片描述

  • 若上图中没有Tomcat Server,则需要点击弹出框左上角的+号,进行添加
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
  • 项目部署后,再回到tomcat配置页,调整VM options
    在这里插入图片描述
  • 然后给配置取一个名字
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

6、运行效果

在这里插入图片描述

7、参考链接

【01】博客园-SpringMVC详解(一)------入门实例
【02】知乎-Spring MVC【入门】就这一篇!

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐