Skip to content

Instantly share code, notes, and snippets.

@carlanton
Created March 1, 2012 19:01
Show Gist options
  • Save carlanton/1952265 to your computer and use it in GitHub Desktop.
Save carlanton/1952265 to your computer and use it in GitHub Desktop.
Java+Jersey+File
@GET
@Path("media")
@Produces("audio/mpeg")
public File getMedia() {
return new File("/path/to/music.mp3");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment