pradeepcheers / spring-test-mvc

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This project facilitates testing Spring MVC server-side and client-side RestTemplate-based code.

NOTE: The project is now incorporated in the spring-test module of Spring Framework 3.2. Applications building against Spring Framework 3.1.x can continue to use this standalone project. However, applications building with Spring Framework 3.2 should use the spring-test module of Spring Framework 3.2 instead. See the Spring Framework reference guide for more details.

To get started, see sample server-side and client-side tests. The spring-mvc-showcase project also has many sample tests.

Milestone 2 can be obtained through the http://repo.springsource.org/libs-milestone repository.

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-test-mvc</artifactId>
  <version>1.0.0.M2</version>
  <scope>test</scope>
</dependency>

The latest snapshot can be obtained through the http://repo.springsource.org/libs-snapshot repository.

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-test-mvc</artifactId>
  <version>1.0.0.BUILD-SNAPSHOT</version>
  <scope>test</scope>
</dependency>

This project is available under version 2.0 of the Apache License.

About