Skip to content

Instantly share code, notes, and snippets.

@whaley
Created September 25, 2011 14:39
Show Gist options
  • Select an option

  • Save whaley/1240658 to your computer and use it in GitHub Desktop.

Select an option

Save whaley/1240658 to your computer and use it in GitHub Desktop.
JAXRS Multiple Content Types Output
[whaley@sunspot ~]
> curl -H"Accept:application/json" 'http://localhost:8080/rest-sample/service/player/whaley?playerClass=Soldier'
{"player":{"nickname":"whaley","playerClass":"Soldier"}}
[whaley@sunspot ~]
> curl -H"Accept:application/xml" 'http://localhost:8080/rest-sample/service/player/whaley?playerClass=Soldier'
<?xml version="1.0" encoding="UTF-8" standalone="yes"?><player><nickname>whaley</nickname><playerClass>Soldier</playerClass></player>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment