乐趣区

搭建spirng-springmvc-mybaits一搭建springmvc

一、介绍

spirng + spring-mvc + mybaits 几乎已经成为了 java 后端后端开发的最基本的组合。虽然现在大家都用 springb-boot, 但是 spring-boot 封装过度,新手都不知道怎么跑起来的,比如像我这样的新手:(!

二、搭建项目

打开 IDEA -> Create New Project


点击 next 填好信息


添加 spring-web-mvc 依赖

<?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>top.taoeer</groupId>
    <artifactId>spring-mvc-mybatis</artifactId>
    <version>1.0-SNAPSHOT</version>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>
    </dependencies>
</project>

只添加一个 spring-webmvc 就行了,其它需要依赖 spring-webmvc 的依赖表里有,会自动导入的。
好了,目前为止开发 web 的依赖已经可以了。接下来我们先弄个 hello world 试一下。
为了让项目跑起来,我们还需要 tomcat, 为了简单起见,我这里采用 tomcat7-maven-plugin 这个 tomcat maven 的插件。tomcat7-maven-plugin 需要将 package 设置为 war。下面是当前的 pom.xml:

<?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>top.taoeer</groupId>
    <artifactId>spring-mvc-mybatis</artifactId>
    <version>1.0-SNAPSHOT</version>
    <!-- tomcat7-maven-plugin 需要将 packaging 设置为 war -->
    <packaging>war</packaging>

    <dependencies>
        <!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.1.9.RELEASE</version>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.tomcat.maven</groupId>
                <artifactId>tomcat7-maven-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <!-- 将 tomcat 的 context 设置为 / , 默认为当前项目名称 -->
                    <path>/</path>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

接下来配置 spring-mvc

先给项目添加 web 功能

点击设置 web 所在目录

目录结构如下


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">

    <servlet>
        <servlet-name>spring</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>spring</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
</web-app>

在 webapp/WEB-INF/ 下创建 spring-mvc 配置文件 spring-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="top.taoeer" />

    <mvc:annotation-driven />
</beans>

创建 HomeController:

package top.taoeer.controllers;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HomeController {@GetMapping("/")
    public String home() {return "home page";}
}

目录结构如下:

一个 spring-mvc 项目就已经搭建完成了,下面跑起来测试一下。


打开 http://localhost:8080

页面显示表示我们的第一个 spring-mvc 项目已经搭建成功

退出移动版