Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'jax-rs'

2069097 - @FormParameters as JSON: java jax-rs
  1. @Service("receiverService")
  2. @Path("/receiver")
  3. public class ObjectReceiverService {
  4.     @POST
  5.     @Path("jsonTest")
  6.     @Produces("application/json")
  7.     public MyObject jsonTest(@FormParam("myPrimitive") int myPrimitive, @FormParam("myComplex") MyObject myComplex) {
  8.         return myComplex;
  9.  
2069096 - @FormParameters as JSON: java jax-rs
  1. @Service("receiverService")
  2. @Path("/receiver")
  3. public class ObjectReceiverService {
  4.     @POST
  5.     @Path("jsonTest")
  6.     @Produces("application/json")
  7.     public MyObject jsonTest(@FormParam("myPrimitive") int myPrimitive, @FormParam("myComplex") MyObject myComplex) {
  8.         return myComplex;
  9.  
fantasy-obligation fantasy-obligation