我无法弄清楚如何在我的REST控件元素中设置响应代码。
以下是REST控件的代码。
<xe:restService id="restProfile" pathInfo="profile">
<xe:this.service>
<xe:customRestService
doGet="#{javascript:REST_PROFILE.doGet()}"
contentType="application/json"
doPost="#{javascript:REST_PROFILE.doPost(reqVar)}"
requestContentType="application/json" requestVar="reqVar">
</xe:customRestService>
</xe:this.service>
</xe:restService>
要求是在某些情况下返回代码404,我无法知道如何操作。
有人知道如何使用SSJS吗?
Domino的版本是9.0.1
答案 0 :(得分:4)
您无法使用doGet和doPost返回状态404。响应属性状态由customRestService管理。 SSJS代码只能返回JSON数据 您可以定义自己的JSON内容,如
{
"status": "error",
"error-message": "something not found"
}
虽然并以这种方式处理错误。
作为替代方案,您可以使用customRestService的 serviceBean 。
<xe:customRestService
contentType="application/json"
requestContentType="application/json"
serviceBean="de.leonso.demo.RestService">
</xe:customRestService>
并在那里设置response.setStatus(status)
的返回码:
public class RestService extends CustomServiceBean {
@Override
public void renderService(CustomService service, RestServiceEngine engine) throws ServiceException {
try {
HttpServletRequest request = engine.getHttpRequest();
HttpServletResponse response = engine.getHttpResponse();
response.setHeader("Content-Type", "application/json; charset=UTF-8");
response.setContentType("application/json");
response.setHeader("Cache-Control", "no-cache");
response.setCharacterEncoding("utf-8");
String method = request.getMethod();
int status = 200;
if (method.equals("GET")) {
status = ...
} else {
...
}
response.setStatus(status);
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e);
}
}