I’m looking for a java web framework that will allow you to configure dynamic urls where information is being passed to the controller.
For example
/{clientName}/login
would call the same controller regardless of the clientName and pass that clientName as an accessible value or an object in it’s own right.
Spring MVC @Controllers allows that kind of request mappings in a very simple way. See “15.3.2 Mapping requests with @RequestMapping” for details.
It is available since Spring 2.5.