Spring forward with added parameters?
The simplest way is to add the data to the request. Since this is a forward, the same request is passed around to different handlers within the server. As example, let’s start with a simple setup of two controllers, one forwarding to the other: @Controller public class TestController { @RequestMapping(value=”/test”) public String showTestPage() { return … Read more