I have been looking for documentation/instructions for how to make Jersey server accept HTTPS requests, and could not find anything helpful so far.
I am not sure where I should start at.
Does Jersey have a built-in support for HTTPS ? Is it enough if I just use https
in the base URI?:
HttpServerFactory.create("https://localhost:1234");
Or should I also implement other things to support it?