I have a method in my controller say demo
@RequestMapping(value="/demo")
public ModelAndView demo("some parameters..")
{
.
.
.
.
return new ModelAndView("newPage","Message","Welcome to new Page");
{
This will send the data to the "newPage". now my question is, can I send the same data to one more page? Does ModelAndView allows it? Every Advice is Appreciated.