常见的HTTP STATUS 来源于springframework中的spring-web模块

本文详细介绍了HTTP协议中各种状态码的含义及用途,包括常见的200 OK、404 Not Found等,以及较少见的状态码如418 I'm a teapot。通过本文可以全面了解HTTP状态码在不同场景下的应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

CONTINUE(100, "Continue"),
    SWITCHING_PROTOCOLS(101, "Switching Protocols"),
    PROCESSING(102, "Processing"),
    CHECKPOINT(103, "Checkpoint"),
    OK(200, "OK"),
    CREATED(201, "Created"),
    ACCEPTED(202, "Accepted"),
    NON_AUTHORITATIVE_INFORMATION(203, "Non-Authoritative Information"),
    NO_CONTENT(204, "No Content"),
    RESET_CONTENT(205, "Reset Content"),
    PARTIAL_CONTENT(206, "Partial Content"),
    MULTI_STATUS(207, "Multi-Status"),
    ALREADY_REPORTED(208, "Already Reported"),
    IM_USED(226, "IM Used"),
    MULTIPLE_CHOICES(300, "Multiple Choices"),
    MOVED_PERMANENTLY(301, "Moved Permanently"),
    FOUND(302, "Found"),
    /** @deprecated */
    @Deprecated
    MOVED_TEMPORARILY(302, "Moved Temporarily"),
    SEE_OTHER(303, "See Other"),
    NOT_MODIFIED(304, "Not Modified"),
    /** @deprecated */
    @Deprecated
    USE_PROXY(305, "Use Proxy"),
    TEMPORARY_REDIRECT(307, "Temporary Redirect"),
    PERMANENT_REDIRECT(308, "Permanent Redirect"),
    BAD_REQUEST(400, "Bad Request"),
    UNAUTHORIZED(401, "Unauthorized"),
    PAYMENT_REQUIRED(402, "Payment Required"),
    FORBIDDEN(403, "Forbidden"),
    NOT_FOUND(404, "Not Found"),
    METHOD_NOT_ALLOWED(405, "Method Not Allowed"),
    NOT_ACCEPTABLE(406, "Not Acceptable"),
    PROXY_AUTHENTICATION_REQUIRED(407, "Proxy Authentication Required"),
    REQUEST_TIMEOUT(408, "Request Timeout"),
    CONFLICT(409, "Conflict"),
    GONE(410, "Gone"),
    LENGTH_REQUIRED(411, "Length Required"),
    PRECONDITION_FAILED(412, "Precondition Failed"),
    PAYLOAD_TOO_LARGE(413, "Payload Too Large"),
    /** @deprecated */
    @Deprecated
    REQUEST_ENTITY_TOO_LARGE(413, "Request Entity Too Large"),
    URI_TOO_LONG(414, "URI Too Long"),
    /** @deprecated */
    @Deprecated
    REQUEST_URI_TOO_LONG(414, "Request-URI Too Long"),
    UNSUPPORTED_MEDIA_TYPE(415, "Unsupported Media Type"),
    REQUESTED_RANGE_NOT_SATISFIABLE(416, "Requested range not satisfiable"),
    EXPECTATION_FAILED(417, "Expectation Failed"),
    I_AM_A_TEAPOT(418, "I\'m a teapot"),
    /** @deprecated */
    @Deprecated
    INSUFFICIENT_SPACE_ON_RESOURCE(419, "Insufficient Space On Resource"),
    /** @deprecated */
    @Deprecated
    METHOD_FAILURE(420, "Method Failure"),
    /** @deprecated */
    @Deprecated
    DESTINATION_LOCKED(421, "Destination Locked"),
    UNPROCESSABLE_ENTITY(422, "Unprocessable Entity"),
    LOCKED(423, "Locked"),
    FAILED_DEPENDENCY(424, "Failed Dependency"),
    UPGRADE_REQUIRED(426, "Upgrade Required"),
    PRECONDITION_REQUIRED(428, "Precondition Required"),
    TOO_MANY_REQUESTS(429, "Too Many Requests"),
    REQUEST_HEADER_FIELDS_TOO_LARGE(431, "Request Header Fields Too Large"),
    INTERNAL_SERVER_ERROR(500, "Internal Server Error"),
    NOT_IMPLEMENTED(501, "Not Implemented"),
    BAD_GATEWAY(502, "Bad Gateway"),
    SERVICE_UNAVAILABLE(503, "Service Unavailable"),
    GATEWAY_TIMEOUT(504, "Gateway Timeout"),
    HTTP_VERSION_NOT_SUPPORTED(505, "HTTP Version not supported"),
    VARIANT_ALSO_NEGOTIATES(506, "Variant Also Negotiates"),
    INSUFFICIENT_STORAGE(507, "Insufficient Storage"),
    LOOP_DETECTED(508, "Loop Detected"),
    BANDWIDTH_LIMIT_EXCEEDED(509, "Bandwidth Limit Exceeded"),
    NOT_EXTENDED(510, "Not Extended"),
    NETWORK_AUTHENTICATION_REQUIRED(511, "Network Authentication Required");
### Spring Web 框架使用教程及常见问题 #### Spring Web 概述 Spring WebSpring Framework 的一个重要模块,专注于构建基于 HTTP 协议的应用程序。它提供了处理请求响应的核心功能以及与其他组件集成的能力[^1]。 以下是关于 Spring Web 的一些核心概念和常见问题解答: --- #### 1. **创建一个简单的 Spring Web 应用** 要快速启动并运行一个 Spring Web 应用,可以通过以下方式实现: - 使用 Spring Initializr 工具初始化项目。 - 添加 `spring-boot-starter-web` 依赖项到项目的 Maven 或 Gradle 文件中。 Maven 示例配置如下所示: ```xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> ``` Gradle 示例配置如下所示: ```gradle implementation 'org.springframework.boot:spring-boot-starter-web' ``` 通过上述依赖引入后,即可利用 Spring MVC 提供的功能开发 RESTful API 和其他 Web 功能。 --- #### 2. **如何测试 Spring Web 控制器** 为了确保控制器逻辑正常工作,可以借助 JUnit 进行单元测试。推荐使用 `@WebMvcTest` 注解来加载特定的 Controller 并模拟 HTTP 请求。 示例代码如下: ```java import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.autoconfigure.web.servlet.WebMvcTest; import org.springframework.http.MediaType; import org.springframework.test.web.servlet.MockMvc; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @WebMvcTest(MyController.class) public class MyControllerTests { @Autowired private MockMvc mockMvc; @Test public void testGetEndpoint() throws Exception { this.mockMvc.perform(get("/api/resource").accept(MediaType.APPLICATION_JSON)) .andExpect(status().isOk()); } } ``` 此方法适用于轻量级的接口测试场景。 --- #### 3. **Spring Web 中的安全性支持** 对于现代应用程序而言,安全性至关重要。Spring Security 可以为 Spring Web 提供全面的身份认证与授权机制。其典型应用场景包括但不限于传统 Web 应用、前后端分离架构下的 Token 认证以及微服务中的网关安全控制[^2]。 例如,在 URL 身份验证方面,可通过定义权限规则保护资源访问路径。具体配置可参考以下代码片段: ```java @Configuration @EnableWebSecurity public class SecurityConfig extends WebSecurityConfigurerAdapter { @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers("/admin/**").hasRole("ADMIN") // 仅允许管理员角色访问 /admin/* .anyRequest().authenticated(); // 所有其他请求需登录才能访问 } } ``` --- #### 4. **常见的性能优化建议** 当面对高并发流量时,可以从以下几个角度提升 Spring Web 性能: - 合理设置线程池大小以匹配服务器硬件能力; - 利用缓存技术减少数据库查询次数; - 对静态文件启用浏览器缓存策略; 这些措施能够显著改善用户体验并降低系统负载。 --- #### 5. **跨域资源共享 (CORS)** 处理方案 如果前端应用部署于不同域名下,则需要正确配置 CORS 政策以便顺利调用后端接口。一种简单的方式是在全局范围内开启 CORS 支持: ```java @Bean public WebMvcConfigurer corsConfigurer() { return new WebMvcConfigurer() { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allowedOrigins("*") .allowedMethods("GET", "POST", "PUT", "DELETE"); } }; } ``` 注意生产环境中应避免使用通配符 "*" 来指定允许来源地址列表。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值