java - JAX-RS request taking custom object -


in specific jax-rs based web service implementation there need of custom object sent in web service request. aware of returning objects jax-rs based web service not quite sure of sending object during request.

can body me regarding this?

thanks in advance, arijit bose

you should implement messagebodyreader custom object such that:

public class yourclassreader implements messagebodyreader<yourclass> {     @override     public boolean isreadable...      @override     yourclass readfrom... } 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -