Thymeleaf没有识别出Strings只是ModelAndView

时间:2018-02-23 21:32:29

标签: thymeleaf

根据像this这样的文件,我应该能够做到这一点......

@RequestMapping("")
public String root(){
  return "test";
}

但是,这只会返回" test"这个词。为了使它工作,我必须使用稍微更明确的......

@RequestMapping("")
public ModelAndView root(){
  return new ModelAndView("test");
}

我遗漏的一件小事是阻止顶级版本正确呈现?

0 个答案:

没有答案