Spring MVC Controller单元测试

发表于:2014-11-19 13:33

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:pairwinter    来源:51Testing软件测试网采编

  简介
  Controller层的单元测试可以使得应用的可靠性得到提升,虽然这使得开发的时间有所增加,有得必失,这里我认为得到的比失去的多很多。
  Sping MVC3.2版本之后的单元测试方法有所变化,随着功能的提升,单元测试更加的简单高效。
  这里以4.1版本为例,记录Controller的单元测试流程。非常值得参考的是Spring MVC Showcase(https://github.com/spring-projects/spring-mvc-showcase),它当前的版本使用的是4.1.0,以后会有所变动,为了使项目能够运行,请以它更新的配置为参考。
  我用的IDE是IntelliJ IDEA13,我个人认为比Eclipse好用很多,是付费的,很贵!
  项目结构
  使用maven构建项目,项目结构如下:
  在Controller层的测试不需要写单独的Spring config,可以直接使用src/main/java中的.xml
  这里记录一下,Spring Mvc context的配置策略:
  好多的小伙伴都会在一个文件(e.g spring-mvc.xml)中配置很多的东西,来看看showcase中web的配置结构
  WEB-INF
  web.xml (文件)
  spring (文件夹)
  root-context.xml (文件,放置能够被servlet和filter共享使用的资源)
  appServlet (目录)
  controllers.xml(文件,与Controller相关的配置)
  servlet-context.xml (文件,放置有servlet使用的资源)
  Spring mvc是对Servlet的包装,使其能够结构化,流程化。
1 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
2
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
5 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
6
7 version="3.0">
8
9 <!-- The definition of the Root Spring Container shared by all Servlets and Filters -->
10
11 <context-param>
12
13 <param-name>contextConfigLocation</param-name>
14
15 <param-value>/WEB-INF/spring/root-context.xml</param-value>
16
17 </context-param>
18
19 <!-- Creates the Spring Container shared by all Servlets and Filters -->
20
21 <listener>
22
23 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
24
25 </listener>
26
27 <filter>
28
29 <filter-name>csrfFilter</filter-name>
30
31 <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
32
33 <async-supported>true</async-supported>
34
35 </filter>
36
37 <filter-mapping>
38
39 <filter-name>csrfFilter</filter-name>
40
41 <url-pattern>/*</url-pattern>
42
43 </filter-mapping>
44
45 <!-- Processes application requests -->
46
47 <servlet>
48
49 <servlet-name>appServlet</servlet-name>
50
51 <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
52
53 <init-param>
54
55 <param-name>contextConfigLocation</param-name>
56
57 <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
58
59 </init-param>
60
61 <load-on-startup>1</load-on-startup>
62
63 <async-supported>true</async-supported>
64
65 </servlet>
66
67 <servlet-mapping>
68
69 <servlet-name>appServlet</servlet-name>
70
71 <url-pattern>/</url-pattern>
72
73 </servlet-mapping>
74
75 <!-- Disables Servlet Container welcome file handling. Needed for compatibility with Servlet 3.0 and Tomcat 7.0 -->
76
77 <welcome-file-list>
78
79 <welcome-file></welcome-file>
80
81 </welcome-file-list>
82
83 </web-app>
21/212>
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号