扫码关注官方订阅号
Can we create custom HTTP Status codes ?
走同样的路,发现不同的人生
Ofcourse, you can use raw servlet api HttpServletResponse,
@RequestMapping("test") public void test(HttpServletResponse response) throws IOException { response.setStatus(10000); // http status code 10000(NOT EXISTS) response.flushBuffer(); }
But is's not recommend to use a HTTP status code that does not exists,cause the clients don't know what it means
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
扫描下载App
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
Ofcourse, you can use raw servlet api HttpServletResponse,
But is's not recommend to use a HTTP status code that does not exists,
cause the clients don't know what it means