我使用从STS创建的模板创建了Spring MVC项目,这是在控制器中生成的:
@RequestMapping(value = "/", method = RequestMethod.GET) public String home(Locale locale, Model model) { //stuff }
我的问题是,localeand model变量如何传递到home方法中?
locale
model
home
另外,可以传递给方法的对象的可能选项是什么?
普遍的答案是“spring的魔法”。但是,Spring参考指南的MVC章节中的“支持的处理程序方法参数和返回类型”提供了您问题的确切答案。