Moved tests from testsuite to web.servlet

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@258 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Arjen Poutsma
2008-11-03 10:49:21 +00:00
parent 926727df7c
commit c2e54f7bb7
17 changed files with 1079 additions and 374 deletions
@@ -0,0 +1,20 @@
package org.springframework.web.bind.annotation;
import java.lang.annotation.Target;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Documented;
/**
* @author Arjen Poutsma
* @since 3.0
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RequestMappings {
RequestMapping[] annotations();
}