I have a simple Restful service created using Jersey.
@GET
@Path("{name}")
@Produces(MediaType.TEXT_PLAIN)
public String Greetings(@PathParam(value="name") String name) {
return "Hello "+name;
}
Now if I access the URL,
http://localhost:8082/HPRestServices/rest/information/John
, I'm able to hit the service.
My requirement is I want to achieve the same over https://
What is the easiest way to achieve this??