Question

I'm searching a nice way to send a java object to my rest web service.
It's possible or not ?


For sample I wan't to send an "User" Object to my rest :

public Class User{
    private String name;
    private String surname;

    public getName(){
     return name;
    }

    public setName(String name){

      [...]
 }

It's possible to generate AUTOMATICALY this kind of Rest ?
www.foo.com/createUser/name="foo"&surname="foo"

Was it helpful?

Solution

Have a look at Restlet. The tutorial shows you how to get started.

Restlet allows you to use a number of representation formats, including XML and JSON.

OTHER TIPS

I would consider using a JSON representation for this kind of Java objects. I prefer the Jersey implementation of JAX-RS and it has built-in support for JSON serialization over JAXB.

Hope this helps...

It's possible to generate AUTOMATICALY this kind of Rest ? www.foo.com/createUser/name="foo"&surname="foo"

That's NOT REST. That's RPC.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top