I created a Spring MVC project using a template that is created from the STS and this is what is generated in the controller:
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
//stuff
}
My question is, how does the locale
and model
variable get passed into the home
method?
Also, what are the possible options for the objects that can be passed to the method?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…