Possible duplicate:Where are the request method constants in the servlet API?
I am looking for a Java string constant to reference HTTP request methods (GET, POST, PUT, etc.). I was expecting an HttpServlet or HttpServletRequest to have constants for these methods, but this does not seem to be the case.
Doesn't look like: Where are the request method constants in the servlet API?
Java Spring RequestMapping . 13.11.3 : http://static.springsource.org/spring/docs/2.5.x/reference/mvc.html#mvc-annotation
, HTTP-:
@RequestMapping(method = RequestMethod.GET) @RequestMapping(method = RequestMethod.POST) @RequestMapping(method = RequestMethod.PUT)
RequestMethod: http://apollo89.com/java/spring-framework-2.5.3/api/org/springframework/web/bind/annotation/RequestMethod.html
Source: https://habr.com/ru/post/1742199/More articles:In Visual Studio 2008, when I stop debugging the ASP Classic website, Visual Studio always resets - debuggingThe conceptual process of filling related tables in a database (MySql) from a CSV file - databaseOracle: using notational parameters which calling functions in insert statements are not allowed? - oracleC # The task of static constructors - you need to specify the parameter - c #Doxygen ignores inherited functions when a class inherits privately, but functions are declared publicly again - c ++Building colors for maximum contrast - language-agnosticCan't convert NSNamedColorSpace to NSDeviceRGBColorSpace? - objective-cRuby Win32Api receives a single character, not blocking - inputjQuery adding row to table with click () handler for tr - jqueryF # Использовать оператор list [] в классе? - operator-overloadingAll Articles