例如,HttpServletResponse
将 HTTP 状态代码作为常量,例如
public static final int SC_OK = 200;
public static final int SC_CREATED = 201;
public static final int SC_BAD_REQUEST = 400;
public static final int SC_UNAUTHORIZED = 401;
public static final int SC_NOT_FOUND = 404;
是否在 Java EE API 中的任何地方为 HTTP 方法定义了任何此类常量GET
,POST
以便可以轻松引用它,而不是我自己创建一个?