我有一个用 javax 实现的 REST 接口来登录用户。
@Path("/login")
@GET
@Produces(MediaType.APPLICATION_JSON)
public UserId login(@QueryParam("email") String email, @QueryParam("password") String password) throws InvalidUserDataException {
User user;
try {
user = loadUserFromDatabase(null, email);
} catch (MissingDatabaseEntryException e) {
e.printStackTrace();
throw new InvalidUserDataException("Email and password do not match.");
}
if(!user.confirmed)
throw new InvalidUserDataException("We have sent you a confirmation mail. Please confirm your email first.");
if(!user.password.equals(password))
throw new InvalidUserDataException("Email and password do not match.");
return new UserId(user.userId);
}
此外,还有一个Exception Mapper
将抛出的异常映射到特定的 HTTP 响应。
@Provider
public class InvalidUserDataExceptionHandler implements ExceptionMapper<InvalidUserDataException> {
@Override
public Response toResponse(InvalidUserDataException exception)
{
return Response.status(Response.Status.CONFLICT).entity(exception.getMessage()).build();
}
}
无论我抛出什么错误以及我在映射器类中定义什么状态代码,服务器总是只响应 500 内部服务器错误而不是定义的 409。有人知道我在这里缺少什么吗?提前致谢。