My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Links

This library enables the entire Spring MVC stack inside the Alfresco core repository. There is no need to maintain several webscript files, anymore. One simple annotated method and you have the result.

This project provides the glue between Alfresco 3.3+ and Spring MVC. Using Spring's annotations with Alfresco replaces the usage of standard webscripts and speeds up the development.

@Controller
@RequestMapping("/user/*")
public class UserController {

    @Transactional
    @RequestMapping(value = "get", method = RequestMethod.GET)
    public String getUSer(@RequestParam String userId) {
         ....

    }
}
Powered by Google Project Hosting