I need to create a method just like a Controller method, but without mapping it to a request pattern, as it should be called from another piece of code.
The method will take some parameters and, probably, populate the model.
Basically I want Spring MVC to do the job of merging model with the view jsp, and, probably, print it to the HttpServletResponse that I provide and set some other headers like Spring will normally do.
Should be a few lines of code but I can't imagine which:)