Hi kiwi,

at this time, the feature that seems similar to spring MVC web binding, 
is the usage of the converterHelper.
For example, your ServerResource defines such method:
@Post
public void accept(Form form){
[...]
}

The default converter delivered by the org.restlet.jar will convert the 
form sent by the Web browser (thanks to its media type), to a Form 
instance containing all parameters.
If you want to handle conversions from representations to specific 
objects (in both directions, or only one), you can add your own converter.

Could you tell us about your needs?

Best regards,
Thierry Boileau
> hi,
>
> I wondering is restlet (will) support POJO binding like what in spring MVC 
> web binding which convert all parameter value to java object. 
>
> This could be useful if client is sending many parameter and server can 
> convert it to object without many boilerplate code.
>
> kiwi
> ----
> happy hacking !
>
> ------------------------------------------------------
> http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2431861
>
>

------------------------------------------------------
http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2432242

Reply via email to