任何获取HTTP和HTTPS值常量的方法

时间:2018-12-18 04:37:17

标签: java spring rest

定义HTTP和HTTP常量值时是否存在一个类。到目前为止,我已经创建了一个自定义类。

   public static class UrlConstants {

    private UrlConstants() {
        super();
    }

    /** The Constant HTTP. */
    public static final String HTTP = "http";
}

1 个答案:

答案 0 :(得分:-1)

HttpStatus.OK.value() will return the integer value of the status code.

这可能对您的查询有帮助,这来自org.springframework.http