Hi,
In a project I'm following at work we use Spring MCV and its annotations
to build a REST service mapping the methods of a controller to a
specific path:
@Controller
@RequestMapping("/users/"){
public MyController {
@RequestMapping("/users/{userid}", method=RequestMethod.GET)
public String getUser(@PathVariable String userId) {
// implementation omitted...
}...
....
Is there something similar in WicketStuff or in any other project that
allows us to map the methods of a custom resource in a similar way?
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]