JAXRS-JSON OR XML
@GET
@Path("/allMessages")
public Response getMessages() {
return Response
.status(Response.Status.OK)
.entity(messageService.getAllMessages())
.build();
}
https://www.baeldung.com/jax-rs-response
Dependency is needed from the website
Comments
Post a Comment