java – Spring百里叶的页眉和页脚动态包括

前端之家收集整理的这篇文章主要介绍了java – Spring百里叶的页眉和页脚动态包括前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我最近在春天开始使用百里香模板引擎.我想要实现的是 – 如果我的控制器就是这个

@RequestMapping(value="/",method=RequestMethod.GET)
public String index() {
    return "homePage";
}

然后我想在homePage.html中编写HTML代码而没有像head,title,body等完整的HTML定义.

不想在homePage.html这样写.

我更倾向于将头部分作为标题片段,来自控制器和页脚的内容来自页脚片段.

所以总的来说 – 我怎么能做到这一点:

/fragment/header.html

/home.html

(这个投掷错误)

/fragment/footer.html

  

注意:我已经看过这些例子了

> http://www.thymeleaf.org/doc/articles/layouts.html
> https://looksok.wordpress.com/2014/06/28/spring-website-layouts-ssi-with-thymeleaf-templates/
> http://blog.codeleak.pl/2013/11/thymeleaf-template-layouts-in-spring.html

最佳答案
解决了这个问题:

Controller指向index.html并给出“内容页面”的属性

@RequestMapping(value={"/"})
   public String root(Locale locale,ModelMap model) {
   model.addAttribute("content","helloWorldView");     
   return "index";
}

这是我的index.html:

所以我有一个带页眉和页脚的文件夹片段:

片段/了header.html

片段/ footer.html

在我的文件夹视图中,我获得了包含内容的所有视图
意见/ helloWorldView.html:

原文链接:https://www.f2er.com/spring/432047.html

猜你在找的Spring相关文章