1、新建一个普通的maven项目,添加web支持
2、在pom.xml中导入相关依赖
SpringMVC相关
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.2.8.RELEASE</version> </dependency>
Servlet
<dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> </dependency>
jsp
<dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>jsp-api</artifactId> <version>2.2 </version> </dependency>
为了防止资源导出失败,我们加入以下代码
<!--在build中配置resources,防止我们资源导出失败的问题--> <build> <resources> <resource> <directory>src/main/resources</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> <resource> <directory>src/main/java</directory> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> <filtering>true</filtering> </resource> </resources> </build>
3、配置web.xml
注意web.xml的版本要为最新版
注册DispatcherServlet
<!--1.注册DispatcherServlet--> <servlet> <servlet-name>springmvc</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <!--关联一个springmvc的配置文件:【servlet-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>
4、编写SpringMVC配置文件
上述DispatcherServlet绑定该配置文件,主要配置以下几个部分:
1. 自动扫描包
让指定包下的注解生效,由IOC容器统一管理
<context:component-scan base-package="controller"/>
2. 过滤静态资源
它会像一个检查员,对进入DispatcherServlet的URL进行筛查,如果发现是静态资源的请求,就将该请求转由Web应用服务器默认的Servlet处理,如果不是静态资源的请求,才由DispatcherServlet继续处理。
<mvc:default-servlet-handler/>
3. 支持mvc注解驱动
在Spring中一般用@RequestMapping注解来完成映射关系
为了使其生效, 必须向上下文中注册两个实例:
<mvc:annotation-driven/>
annotation-driven配置帮助我们自动完成上述两个实例的注入
4. 视图解析器
<!--视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="InternalResourceViewResolver"> <!--前缀--> <property name="prefix" value="/WEB-INF/jsp/"/> <!--后缀--> <property name="suffix" value=".jsp"/> </bean>
完整代码:
<?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 http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd"> <!--自动扫描包,让指定包下的注解生效,由IOC容器统一管理--> <context:component-scan base-package="controller"/> <!--过滤静态资源,让SpringMVC不处理静态资源 .css .js .mp3 .mp4 .html--> <mvc:default-servlet-handler/> <!-- 支持mvc注解驱动 在spring中一般用@RequestMapping注解完成映射关系 要想使@RequestMapping注解生效 必须向上下文中注册DefaultAnnotationHandLerMapping(处理器映射器) 和一个AnnotationMethodHandLerAdapter(处理器适配器)实例 这两个实例分别在类级别和方法级别处理 annotation-driven配置帮助我们自动完成上述两个实例的注入 --> <mvc:annotation-driven/> <!--视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="InternalResourceViewResolver"> <!--前缀--> <property name="prefix" value="/WEB-INF/jsp/"/> <!--后缀--> <property name="suffix" value=".jsp"/> </bean> </beans>
SpringMVC必须配置的三大件
当我们用注解实现时,只需要手动配置视图解析器,另外两个只需要开启注解驱动即可,省去了大量xml片段
5、创建controller
在src/main/java目录下新建controller包,在其中新建HelloController.java
package 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", "Hello SpringMVCAnnotation"); return "hello";//会被视图解析器处理 } }
可以在类上使用,也可以直接在方法上使用,同时使用时,在类上使用相当于父路径
6、创建视图层
编写要请求的jsp页面,这里显示上述存入视图的参数
在web/WEB-INF/下新建jsp包,在其中新建hello.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <html> <head> <title>Title</title> </head> <body> ${msg} </body> </html>
7、在项目结构中添加lib目录
该步骤是为了防止最终出现404错误,这是IDEA自己的问题
选中所有的包,导入
8、配置Tomcat运行测试
运行测试,访问http://localhost:8080/hello,成功访问
1. 实现Controller接口
Controller是一个接口,在org.springframework.web.servlet.mvc包下,接口中只有一个方法;
接下来的操作代码基于上一篇博客第一个SpringMVC程序
我们删除springmvc-servlet配置文件中处理映射器和处理适配器的配置,只留下一个视图解析器
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd"> <!--视图解析器--> <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver" id="InternalResourceViewResolver"> <!--前缀--> <property name="prefix" value="/WEB-INF/jsp/"/> <!--后缀--> <property name="suffix" value=".jsp"/> </bean> <!--Handler--> <bean id="/hello" class="controller.HelloController"/> </beans>
然后配置Tomcat运行测试,同样访问http://localhost:8080/hello
发现也可以成功运行,我们先前之所以写上处理映射器和处理适配器的配置,是为了了解其执行原理,显示调用,真实开发中,不需要配置,SpringMVC已经帮我们配置好了的
缺点:
一个控制器中只有一个方法,如果要多个方法则需要定义多个Controller,比较麻烦;2. 使用注解@Controller
@Controller注解类型用于声明Spring类的实例是一个控制器,这是我们最长使用的方式
Spring可以使用扫描机制来找到应用程序中所有基于注解的控制器类,为了保证Spring能找到你的控制器,需要在配置文件中声明组件扫描。
<context:component-scan base-package="controller"/>
例如上述类:
@Controller public class HelloController { @RequestMapping("/hello") public String hello(Model model) { //封装数据 model.addAttribute("msg", "Hello SpringMVCAnnotation"); return "hello";//会被视图解析器处理 } }
被这个注解的类中的所有方法,如果返间值是String,并且有具体页面可以跳转,那么就会被视图解析器解折
例如我们在其中增加一个方法,同样返回hello视图
@Controller public class HelloController { @RequestMapping("/hello") public String hello(Model model) { //封装数据 model.addAttribute("msg", "Hello SpringMVCAnnotation"); return "hello";//会被视图解析器处理 } @RequestMapping("/hello2") public String hello2(Model model) { model.addAttribute("msg","This is the second request"); return "hello"; } }
再次配置Tomcat运行测试,首先访问http://localhost:8080/hello
再访问http://localhost:8080/hello2
可以发现,我们的两个请求都可以指向一个视图,但是页面结果的结果是不一样的,从这里可以看出视图是被复用的,而控制器与视图之间是弱偶合关系。
@RequestMapping注解用于映射url到控制器或一个特定的处理程序方法,可用于类或方法上
用于类上,表示类中的所有响应请求的方法都是以该地址作为父路径
我们修改上述方法,在类上增加该注解
@Controller @RequestMapping("/h") public class HelloController { @RequestMapping("/hello") public String hello(Model model) { //封装数据 model.addAttribute("msg", "Hello SpringMVCAnnotation"); return "hello";//会被视图解析器处理 } @RequestMapping("/hello2") public String hello2(Model model) { model.addAttribute("msg","This is the second request"); return "hello"; } }
然后配置Tomcat运行测试,我们再输入http://localhost:8080/hello,
直接404找不到报错了,这是因为我们在类上添加该注解,相当于一个父路径
再次访问http://localhost:8080/h/hello,成功!
总结
到此这篇关于使用注解开发SpringMVC详细配置教程的文章就介绍到这了,更多相关注解开发SpringMVC内容请搜索小牛知识库以前的文章或继续浏览下面的相关文章希望大家以后多多支持小牛知识库!
本文向大家介绍MySQL解压版配置步骤详细教程,包括了MySQL解压版配置步骤详细教程的使用技巧和注意事项,需要的朋友参考一下 mysql-5.7.14-winx64\bin配置到Path中 在解压路径下复制my-default.ini,修改名称为my.ini 在my.ini添加如下 basedir:是上述mysql的解压路径 datadir:后续初始化等数据都会保存在该目录下,在该文件目录下新建
本文向大家介绍Visual Studio 2019配置OpenCV4.1.1详细图解教程,包括了Visual Studio 2019配置OpenCV4.1.1详细图解教程的使用技巧和注意事项,需要的朋友参考一下 一、VS和OpenCV的安装vs的安装可以参考这篇博客visual studio2019的安装以及使用,博主使用的是VS2019OpenCV的下载地址:opencv。博主安装的是4.1.1
本文向大家介绍jQuery插件开发详细教程,包括了jQuery插件开发详细教程的使用技巧和注意事项,需要的朋友参考一下 扩展jQuery插件和方法的作用是非常强大的,它可以节省大量开发时间。这篇文章将概述jQuery插件开发的基本知识,最佳做法和常见的陷阱。 一、入门 编写一个jQuery插件开始于给jQuery.fn加入新的功能属性,此处添加的对象属性的名称就是你插件的名称: 用户非常喜欢的
本文向大家介绍springmvc整合freemarker配置的详细步骤,包括了springmvc整合freemarker配置的详细步骤的使用技巧和注意事项,需要的朋友参考一下 一、对应的导包(有些包是不必须的) 二、在spring配置文件中配置 三、jdbc连接 jdbc.properties 四、log4j配置 与本项目无关的mybatis配置 以上就是本文的全部内容,希望对大家的学习有所帮助
本文向大家介绍在Visual Studio Code中配置GO开发环境的详细教程,包括了在Visual Studio Code中配置GO开发环境的详细教程的使用技巧和注意事项,需要的朋友参考一下 一、GO语言安装 详情查看:GO语言下载、安装、配置 二、GoLang插件介绍 对于Visual Studio Code开发工具,有一款优秀的GoLang插件,它的主页为:https://github.c
本文向大家介绍Xcode使用教程详细讲解(全),包括了Xcode使用教程详细讲解(全)的使用技巧和注意事项,需要的朋友参考一下 Xcode使用教程详细讲解是本文要介绍的内容,Xcode是一个款强大的IDE开发环境,就像你在写Windows程序时需要VS2005一样 需要要Xcode为你写Mac程序提供环境。因此,如果你要成为Mac 程序的开发者,灵活运用Xcode工具是你必须做的第一步。 1)我们