dinesh Archive

Download excel file from JAX-RS

In this tutorial we will discuss about download ms excel files from JAX-RS, for user to download a file, annotate the method with @Produces(“application/vnd.ms-excel”) : Put @Produces(“application/vnd.ms-excel”) on service method, with a Response return type. …

Download pdf file from JAX-RS

In this tutorial we will discuss about download pdf files from JAX-RS, for user to download a file, annotate the method with @Produces(“application/pdf”) : Put @Produces(“application/pdf”) on service method, with a Response return type. It …

Download image file from JAX-RS

In this tutorial we will discuss about download image files from JAX-RS, for user to download a file, annotate the method with @Produces(“image/image-type”) :   Put @Produces(“image/png”) on service method, with a Response return type. …