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
Post a Comment