users@jersey.java.net

[Jersey] URI generated with &

From: D'Arcy Smith <ds_at_terratap.com>
Date: Fri, 22 Feb 2013 23:24:24 -0800

Hi all,
With an element in a response like:

@XmlElement
private URI x;
I get a resulting XML/JSON like this:

<x>http://localhost:8080/y/31/z?a=1&amp;b=2</x>
Is there a way to have it without the amp;, like this:

<x>http://localhost:8080/y/31/z?a=1&b=2</x>
Thanks,
..darcy