Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created June 12, 2019 17:41
Show Gist options
  • Select an option

  • Save recursivecodes/e8f6663f555c3c124e1d07741c344940 to your computer and use it in GitHub Desktop.

Select an option

Save recursivecodes/e8f6663f555c3c124e1d07741c344940 to your computer and use it in GitHub Desktop.
@Get("/")
@Produces(MediaType.APPLICATION_JSON)
public HttpResponse<Object> index() {
Map<String, Object> meta = new HashMap<>();
meta.put("configValue", this.testConfigValue);
return HttpResponse.ok(meta);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment