Skip to main content

Jersey posting multipart data

This took me sometime to figure out mostly it was because I was only including jersey-multipart-1.6.jar but I was not including mimepull-1.3.jar.

So the intent is to upload a file using REST api and we need pass meta attributes in addition to uploading the file. Also the intent is to stream the file instead of first storing it on the local disk. Here is some sample code.

@Path("/upload-service")
public class UploadService {
 @Context
 protected HttpServletResponse response;
 @Context
 protected HttpServletRequest request;

 @POST
 @Consumes(MediaType.MULTIPART_FORM_DATA)
 @Produces(MediaType.APPLICATION_JSON)
 public String uploadFile(@PathParam("fileName") final String fileName,
   @FormDataParam("workgroupId") String workgroupId,
   @FormDataParam("userId") final int userId,
   @FormDataParam("content") final InputStream content) throws JSONException {
  //.......Upload the file to S3 or netapp or any storage service
 }
}


Now to test this service I used Jersey client api and it was easy to test this.


public class UploadServiceTest  extends JerseyTest {
 public UploadServiceTest() {
   super(new WebAppDescriptor.Builder(UploadService.class
    .getPackage().getName()).contextPath("/public/rest").build());
 }
 
 @Override
    protected TestContainerFactory getTestContainerFactory() {
        return new GrizzlyWebTestContainerFactory();
    }
 @Test
 public void testUploadService() throws Exception {
  WebResource webResource = resource();

  FormDataMultiPart form = new FormDataMultiPart();
  form.field("fileName", "/Shared/marketing/scrap.txt");
  form.field("workgroupId", "XXX");
  form.field("userId", 1001);
  String content = "This is a binary content";

  FormDataBodyPart fdp = new FormDataBodyPart("content",
    new ByteArrayInputStream(content.getBytes()),
    MediaType.APPLICATION_OCTET_STREAM_TYPE);
  form.bodyPart(fdp);

  String responseJson = webResource.path(
    "upload-service").type(MediaType.MULTIPART_FORM_DATA)
    .post(String.class, form);
 }
}


Comments

  1. Thanks, this helped

    ReplyDelete
  2. Hello there!

    I tried your code above and I got the error:
    SEVERE: The following errors and warnings have been detected with resource and/or provider classes:
    SEVERE: Missing dependency for method public javax.ws.rs.core.Response com.test.rest.api.TestPostService.testPost(java.lang.String,java.io.InputStream) at parameter at index 1
    SEVERE: Method, public javax.ws.rs.core.Response com.test.rest.api.TestPostService.testPost(java.lang.String,java.io.InputStream), annotated with POST of resource, com.test.rest.api.TestPostService, is not recognized as valid resource method.

    Here's my method:
    ------------------
    @POST
    @Consumes(MediaType.MULTIPART_FORM_DATA)
    @Produces(MediaType.APPLICATION_XML)
    @Path("/testpost")
    public Response testPost( @QueryParam("mac") String mac,
    @FormDataParam("content") InputStream content) {
    }



    And here's my client program:


    FormDataMultiPart fdmp = new FormDataMultiPart();

    String imgFile = "C:\\temp\test.jpg";
    MultivaluedMap params = new MultivaluedMapImpl();
    params.add("mac", "11-22-33-44-55-66");


    FormDataMultiPart fdmp = new FormDataMultiPart();
    File f = new File(imgFile);
    fdmp.bodyPart(new FileDataBodyPart("content", f, MediaType.APPLICATION_OCTET_STREAM_TYPE));

    ClientResponse response = service.path("apis")
    .path("/getcapturedurl")
    .queryParams(params)
    .type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,fdmp);
    System.out.println( response );





    I also tried this one, with no luck :(

    FormDataMultiPart form = new FormDataMultiPart();
    form.field("content", imgFile);

    FormDataBodyPart fdp = new FormDataBodyPart("content",
    new ByteArrayInputStream(imgFile.getBytes()),
    MediaType.APPLICATION_OCTET_STREAM_TYPE);
    form.bodyPart(fdp);


    ClientResponse response = service.path("apis")
    .path("/getcapturedurl")
    .queryParams(params)
    .type(MediaType.MULTIPART_FORM_DATA).post(ClientResponse.class,form);
    System.out.println( response );


    Any idea?

    Thanks

    ReplyDelete
  3. make sure all depending jersey jars are of same version..

    ReplyDelete
  4. How to use jersey client api in an android context?

    ReplyDelete
    Replies
    1. I have less idea about it but do you really want that overhead of using jersey client api? you might want to check out this http://developer.android.com/reference/org/apache/http/client/HttpClient.html

      Delete

Post a Comment

Popular posts from this blog

Haproxy and tomcat JSESSIONID

One of the biggest problems I have been trying to solve at our startup is to put our tomcat nodes in HA mode. Right now if a customer comes, he lands on to a node and remains there forever. This has two major issues: 1) We have to overprovision each node with ability to handle worse case capacity. 2) If two or three high profile customers lands on to same node then we need to move them manually. 3) We need to cut over new nodes and we already have over 100+ nodes.  Its a pain managing these nodes and I waste lot of my time in chasing node specific issues. I loath when I know I have to chase this env issue. I really hate human intervention as if it were up to me I would just automate thing and just enjoy the fruits of automation and spend quality time on major issues rather than mundane task,call me lazy but thats a good quality. So Finally now I am at a stage where I can put nodes behing HAProxy in QA env. today we were testing the HA config and first problem I immediately

Adding Jitter to cache layer

Thundering herd is an issue common to webapp that rely on heavy caching where if lots of items expire at the same time due to a server restart or temporal event, then suddenly lots of calls will go to database at same time. This can even bring down the database in extreme cases. I wont go into much detail but the app need to do two things solve this issue. 1) Add consistent hashing to cache layer : This way when a memcache server is added/removed from the pool, entire cache is not invalidated.  We use memcahe from both python and Java layer and I still have to find a consistent caching solution that is portable across both languages. hash_ring and spymemcached both use different points for server so need to read/test more. 2) Add a jitter to cache or randomise the expiry time: We expire long term cache  records every 8 hours after that key was added and short term cache expiry is 2 hours. As our customers usually comes to work in morning and access the cloud file server it can happe

Spring 3.2 quartz 2.1 Jobs added with no trigger must be durable.

I am trying to enable HA on nodes and in that process I found that in a two test node setup a job that has a frequency of 10 sec was running into deadlock. So I tried upgrading from Quartz 1.8 to 2.1 by following the migration guide but I ran into an exception that says "Jobs added with no trigger must be durable.". After looking into spring and Quartz code I figured out that now Quartz is more strict and earlier the scheduler.addJob had a replace parameter which if passed to true would skip the durable check, in latest quartz this is fixed but spring hasnt caught up to this. So what do you do, well I jsut inherited the factory and set durability to true and use that public class DurableJobDetailFactoryBean extends JobDetailFactoryBean {     public DurableJobDetailFactoryBean() {         setDurability(true);     } } and used this instead of JobDetailFactoryBean in the spring bean definition     <bean id="restoreJob" class="com.xxx.infrastructure.quar