使用注解开发SpringMVC详细配置教程

时间:2021-05-19

1、使用注解开发SpringMVC

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

  • 需要绑定一个SpringMVC配置文件,下一步我们将创建
  • 设置启动级别为1
  • 设置映射路径为/
<!--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注解来完成映射关系

为了使其生效, 必须向上下文中注册两个实例:

  • DefaultAnnotationHandLerMapping(处理器映射器)
  • AnnotationMethodHandLerAdapter(处理器适配器)
<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://ponent-scan base-package="controller"/>

例如上述类

@Controllerpublic class HelloController { @RequestMapping("/hello") public String hello(Model model) { //封装数据 model.addAttribute("msg", "Hello SpringMVCAnnotation"); return "hello";//会被视图解析器处理 }}

被这个注解的类中的所有方法,如果返间值是String,并且有具体页面可以跳转,那么就会被视图解析器解折

例如我们在其中增加一个方法,同样返回hello视图

@Controllerpublic 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

可以发现,我们的两个请求都可以指向一个视图,但是页面结果的结果是不一样的,从这里可以看出视图是被复用的,而控制器与视图之间是弱偶合关系

3、@RequestMapping

@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内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章