Thymelaf Spring Boot中的Config子文件夹

时间:2017-10-31 07:15:08

标签: spring-boot thymeleaf

如何配置百万富翁以识别子文件夹下的 view / htmls

我现在有templates/个文件夹,我的所有视图HTML页面都可以在这个文件夹中找到。

1 个答案:

答案 0 :(得分:1)

默认情况下,spring-boot会搜索资源下的所有文件和文件夹。因此,请随意在templates/下创建子文件夹。

您只需将文件夹结构设置为返回viewhtml中的片段。

仅仅是我项目的一个例子:

enter image description here

控制器:

@GetMapping(value = "/getAnyWellBox")
public String getAnyWellBox(Model model)
    //any code
    return "thirdparty/booking/map/well-box";
}