春天和Thymeleaf,春天怎么知道使用模板?

时间:2014-06-05 19:35:23

标签: spring spring-mvc thymeleaf

我一直在研究一些Spring教程:

http://spring.io/guides

我正在专注于:

http://spring.io/guides/gs/serving-web-content/

我真的不清楚Spring模型如何使用正确的.html文件解析。任何人都可以解释这个或提供链接?这是命名惯例吗?

1 个答案:

答案 0 :(得分:3)

在您提供的链接的示例请求中,返回值是将呈现的视图的名称。

@RequestMapping("/greeting")
public String greeting(@RequestParam(value="name", required=false, defaultValue="World") String name, Model model) {
    model.addAttribute("name", name);
    return "greeting";
}

Thymeleaf的默认视图解析器会自动附加.html。请参阅here

Thymeleaf和Spring集成教程是here.