Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to send a HTTP error for a Java RESTful web service?

I have done this tutorial and now I want to throw an error from this webservice, like HTTP error code 403 or 400.

How can i do this? I noticed that i have an interface of type HttpServletResponse, but I don't know how I can use it. Do I have to import something else?

import java.util.Date;
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
import java.net.*;

import javax.servlet.http.HttpServletResponse;
import javax.ws.rs.Consumes;
import javax.ws.rs.PUT;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.QueryParam;
import javax.xml.ws.http.HTTPException;

import sun.awt.RequestFocusController;

import com.sun.jersey.spi.resource.Singleton;
import com.sun.research.ws.wadl.Request;
import com.sun.research.ws.wadl.Response;
like image 968
Sas Gabriel Avatar asked Feb 18 '26 14:02

Sas Gabriel


1 Answers

You can do it like this.

@GET
public Response check(@QueryParam("username") String username) {
   if (facade.checkUser(username)) {
      return Response.status(Response.Status.NOT_FOUND).build();
   }
   return Response.ok().build();
}
like image 90
Jozef Dropčo Avatar answered Feb 20 '26 04:02

Jozef Dropčo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!