Uses of Class
org.springframework.web.bind.annotation.RequestMethod
Packages that use RequestMethod Package Description org.springframework.web.bind.annotation Annotations for binding requests to controllers and handler methods as well as for binding request parameters to method arguments.org.springframework.web.reactive.result.condition RequestConditionand implementations for matching requests based on different criteria.org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.servlet.mvc.condition Common MVC logic for matching incoming requests based on conditions.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.methodpackage.Uses of RequestMethod in org.springframework.web.bind.annotation
Methods in org.springframework.web.bind.annotation that return RequestMethod Modifier and Type Method Description RequestMethod[]method()The HTTP request methods to map to, narrowing the primary mapping: GET, POST, HEAD, OPTIONS, PUT, PATCH, DELETE, TRACE.RequestMethod[]methods()The list of supported HTTP request methods.static RequestMethodRequestMethod. valueOf(String name)Returns the enum constant of this type with the specified name.static RequestMethod[]RequestMethod. values()Returns an array containing the constants of this enum type, in the order they are declared.Uses of RequestMethod in org.springframework.web.reactive.result.condition
Methods in org.springframework.web.reactive.result.condition that return types with arguments of type RequestMethod Modifier and Type Method Description protected Collection<RequestMethod>RequestMethodsRequestCondition. getContent()Set<RequestMethod>RequestMethodsRequestCondition. getMethods()Returns allRequestMethodscontained in this condition.Constructors in org.springframework.web.reactive.result.condition with parameters of type RequestMethod Constructor Description RequestMethodsRequestCondition(RequestMethod... requestMethods)Create a new instance with the given request methods.Uses of RequestMethod in org.springframework.web.reactive.result.method
Methods in org.springframework.web.reactive.result.method with parameters of type RequestMethod Modifier and Type Method Description RequestMappingInfo.BuilderRequestMappingInfo.Builder. methods(RequestMethod... methods)Set the request method conditions.Uses of RequestMethod in org.springframework.web.servlet.mvc.condition
Methods in org.springframework.web.servlet.mvc.condition that return types with arguments of type RequestMethod Modifier and Type Method Description protected Collection<RequestMethod>RequestMethodsRequestCondition. getContent()Set<RequestMethod>RequestMethodsRequestCondition. getMethods()Returns allRequestMethodscontained in this condition.Constructors in org.springframework.web.servlet.mvc.condition with parameters of type RequestMethod Constructor Description RequestMethodsRequestCondition(RequestMethod... requestMethods)Create a new instance with the given request methods.Uses of RequestMethod in org.springframework.web.servlet.mvc.method
Methods in org.springframework.web.servlet.mvc.method with parameters of type RequestMethod Modifier and Type Method Description RequestMappingInfo.BuilderRequestMappingInfo.Builder. methods(RequestMethod... methods)Set the request method conditions.