Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下,resin 会在响应状态码为 40x 时返回 40x 的 html 页面。但是,当我是一个 ajax 请求的 API 服务器时,我希望响应是自定义格式,例如 json,由 java 编写。如何在resin中禁用40x页面并允许一切由java本身控制。
在 Servlet 2.4 规范中,
response.sendError() 和 response.setStatus()
被区别对待。前者将您重定向到配置的错误页面,但后者仍假定您将自己提供响应。