Skip to content

Instantly share code, notes, and snippets.

@tomatophobia
Created July 11, 2023 03:27
@Post("/blogs")
@RequestConverter(BlogPostRequestConverter.class)
public HttpResponse createBlogPost(BlogPost blogPost) {
logger.debug("createBlogPost");
blogPosts.put(blogPost.getId(), blogPost);
return HttpResponse.ofJson(blogPost);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment