我有一个奇怪的问题。我建立了一个自定义的异常类,并将该异常放入try catch块中。以下是我的代码示例。请帮助我找出这个问题。 这些是我的异常代码。
public class DWExceptionCodes {
public static final int NO_AGENT_FOUND = 400;
public static final int AGENT_ALREADY_EXISTS = 401;
public static final int INCOMPLEATE_DATA = 402;
public static final int SUBSCRIBER_ALREADY_EXISTS = 403;
public static final int AGENT_VALIDATION_FAILED = 404;
public static final int NO_SUBSCRIBER_FOUND = 405;
public static final int TRANSACTION_FAILED = 409;
}
以下是我的异常类
public class DWException extends Exception{
private static final long serialVersionUID= 100L;
private String errorMessage;
private int errorCode;
public String getErrorMessage() {
return errorMessage;
}
public int getErrorCode(){
return errorCode;
}
public DWException(String errorMessage) {
super(errorMessage);
this.errorMessage = errorMessage;
}
public DWException(String errorMessage, int errorCode) {
super(errorMessage);
this.errorMessage = errorMessage;
this.errorCode=errorCode;
}
public DWException() {
super();
}
我创建了一个自定义例外,其次是
public class SubscriberAlreadyExistsException extends DWException{
private static final long serialVersionUID = 1L;
private static String errorMessage = "Subscriber already exists";
private static int errorCode = DWExceptionCodes.SUBSCRIBER_ALREADY_EXISTS;
public SubscriberAlreadyExistsException() {
super(errorMessage, errorCode);
}
}
这是我抛出异常的地方。这是一个restfull Web API。但是我总是在浏览器中遇到异常500
if (agentService.findByNumberAndPin(agentNumber, pin) != null) {
if (dbsubscriber != null) {
throw new SubscriberAlreadyExistsException();
}
我不知道是什么原因导致了此问题。任何快速帮助,我们都很感谢
答案 0 :(得分:1)
您的自定义异常类的errorCode
与HTTP response code.
您需要在REST控制器中手动设置响应代码,例如:
response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
虽然这可行,但这可能是一个有问题的做法。
答案 1 :(得分:0)
您的代码与发送回客户端的内容没有任何关系。
如果要从Servlet发送回特定的HTTP代码,请从HttpServletResponse中选择一个值,如下所示:
import javax.servlet.http.HttpServletResponse;
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
if (agentService.findByNumberAndPin(agentNumber, pin) != null) {
if (dbsubscriber != null) {
// returns 403
response.sendError(HttpServletResponse.SC_FORBIDDEN);
return;
}