SpringMVC基础 -- 注解开发
ssm: mybatis + Spring + SpringMVC MVC三层架构
使用注解 IDEA 开发基础的 SpringMVC 项目
-
创建一个 Maven 项目
-
导入 依赖包 在pom.xml
-
主要有 Spring 框架核心库, Spring MVC , Servlet, JSTL 等
-
<!--导入依赖-->
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>5.1.9.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>
</dependencies>
<!--由于Maven可能存在资源过滤的问题,我们将配置完善-->
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>false</filtering>
</resource>
</resources>
</build>
-
第二步 --(代码正文)
-
配置 web.xml
-
注意点
-
注意web.xml版本问题, 要最新版! version=4.0
-
注册 DispatcherServlet
-
关联 SpringMVC 的配置文件
-
启动级别为 1
-
映射路径为 / [不要用/*,会404]
-
-
-
配置 springmvc-servlet.xml
-
在视图解析器中我们把所有的视图都存在/WEB-INF/目录下,这样可以保证视图安全,因为这个目录下的文件,客户端不能直接访问
-
创建 Controller
-
编写一个 java 控制类: cn.itcast.controller.HelloController
package cn.itcast.controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
-
编写一个 hello.jsp 用于跳转显示
<%
-
使用 springmvc 必须配置的三大件
-
处理器映射器 , 处理器适配器 , 视图解析器
-
通常,我们只需要 手动配置视图解析器 ,而 处理器映射器 和 处理器适配器
-
-
本文来自博客园,作者:刘盛哲的学习笔记,转载请注明原文链接:https://www.cnblogs.com/lszbk/p/12780360.html