SpringMVC基础 -- 注解开发
2020-04-26 16:01:53来源:博客园 阅读 ()
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
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 04.Java基础语法 2020-06-11
- Java--注解 2020-06-11
- springboot2配置JavaMelody与springMVC配置JavaMelody 2020-06-11
- 1-Java基础回顾整理_01 2020-06-10
- Java基础语法菜鸟教程笔记 2020-06-10
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash