根据像this这样的文件,我应该能够做到这一点......
@RequestMapping("")
public String root(){
return "test";
}
但是,这只会返回" test"这个词。为了使它工作,我必须使用稍微更明确的......
@RequestMapping("")
public ModelAndView root(){
return new ModelAndView("test");
}
我遗漏的一件小事是阻止顶级版本正确呈现?