Suppose there is a simple POJO:
public class CustomRequest { private String param1; private String param2; public CustomRequest() { } //getters and setters here } Serialize it in XML, no JSON problem. How can it be serialized into a URL encoded string?
Those. so that the output was:
param1=value1¶m2=value2 Interested in existing solutions / frameworks like JAXB, Gson