Moved tests from testsuite to web.servlet

This commit is contained in:
Arjen Poutsma
2008-11-03 10:49:21 +00:00
parent 25dab06804
commit 6c48de5ad5
17 changed files with 1079 additions and 374 deletions

View File

@@ -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();
}