具有此基本功能
protected ModelAndView handleRequestInternal(...) {
...
return new ModelAndView("welcomePage", "WelcomeMessage", message);
}
我知道这将返回modelandView。我知道这welcomePage
是我的视图名,因此意味着welcomepage.jsp
将调用类似名称。
但我对模型部分感到困惑。是什么WelcomeMessage
以及message
如何在场景模式的工作?