How to pass text as input in a POST request body with Jax-RS

Use MediaType.TEXT_PLAIN in the @Consumes annotation and then you have access to the text content as string

@POST
@Path(“organisation”)
@Consumes(MediaType.TEXT_PLAIN)
@ApiOperation(value = “Create bookmark from text”)
@ApiRespon…

Use MediaType.TEXT_PLAIN in the @Consumes annotation and then you have access to the text content as string

    @POST
    @Path("organisation")
    @Consumes(MediaType.TEXT_PLAIN)
    @ApiOperation(value = "Create bookmark from text")
    @ApiResponses({
            @ApiResponse(code = 201, message = "Bookmark successfully created.", response = Bookmark.class),
            @ApiResponse(code = 403, message = "Forbidden")
    })
    public Response createBookmark(@ApiParam("Bookmark") String boookmark, @Context UriInfo uriInfo) throws JAXBException {
        Bookmark created = bookmarkService.createBookmarkFromString(bookmark);
        UriBuilder builder = uriInfo.getAbsolutePathBuilder();
        builder.path(created.getUuid().toString());
        return Response.created(builder.build()).build();
    }

Shared with ❤️ from Codever. Use 👉 copy to mine functionality to add it to your personal snippets collection.


Print Share Comment Cite Upload Translate
APA
Adrian Matei | Sciencx (2024-03-29T11:34:48+00:00) » How to pass text as input in a POST request body with Jax-RS. Retrieved from https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/.
MLA
" » How to pass text as input in a POST request body with Jax-RS." Adrian Matei | Sciencx - Tuesday January 18, 2022, https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/
HARVARD
Adrian Matei | Sciencx Tuesday January 18, 2022 » How to pass text as input in a POST request body with Jax-RS., viewed 2024-03-29T11:34:48+00:00,<https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/>
VANCOUVER
Adrian Matei | Sciencx - » How to pass text as input in a POST request body with Jax-RS. [Internet]. [Accessed 2024-03-29T11:34:48+00:00]. Available from: https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/
CHICAGO
" » How to pass text as input in a POST request body with Jax-RS." Adrian Matei | Sciencx - Accessed 2024-03-29T11:34:48+00:00. https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/
IEEE
" » How to pass text as input in a POST request body with Jax-RS." Adrian Matei | Sciencx [Online]. Available: https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/. [Accessed: 2024-03-29T11:34:48+00:00]
rf:citation
» How to pass text as input in a POST request body with Jax-RS | Adrian Matei | Sciencx | https://www.scien.cx/2022/01/18/how-to-pass-text-as-input-in-a-post-request-body-with-jax-rs/ | 2024-03-29T11:34:48+00:00
https://github.com/addpipe/simple-recorderjs-demo