Skip to content

Instantly share code, notes, and snippets.

@aaukhatov
Created July 23, 2019 09:39
Show Gist options
  • Save aaukhatov/0044469d52f0f100152146147df3431a to your computer and use it in GitHub Desktop.
Save aaukhatov/0044469d52f0f100152146147df3431a to your computer and use it in GitHub Desktop.
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getState(@Context ServletContext context) {
log.info("IoT page");
URI uri = UriBuilder.fromUri(URI.create(context.getContextPath()))
.path("/iot.html").build();
return Response.seeOther(uri).build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment