Advertising
advertising
related pastes to tag 'jax-rs'
- 2069097 - @FormParameters as JSON: java jax-rs
-
- @Service("receiverService")
- @Path("/receiver")
- public class ObjectReceiverService {
- @POST
- @Path("jsonTest")
- @Produces("application/json")
- public MyObject jsonTest(@FormParam("myPrimitive") int myPrimitive, @FormParam("myComplex") MyObject myComplex) {
- return myComplex;
- 2069096 - @FormParameters as JSON: java jax-rs
-
- @Service("receiverService")
- @Path("/receiver")
- public class ObjectReceiverService {
- @POST
- @Path("jsonTest")
- @Produces("application/json")
- public MyObject jsonTest(@FormParam("myPrimitive") int myPrimitive, @FormParam("myComplex") MyObject myComplex) {
- return myComplex;