springboot如何修改thymeleaf中默认的页面路径及默认的后缀名呢?

java-教程王 SpringBoot 发布时间:2022-01-08 18:38:57 阅读数:18147 1
下文讲述springboot修改thymefleaf修改页面默认路径及后缀名的方法分享,如下所示:
实现思路:
    只需在配置文件中修改相应的配置即可,如:
	application.yaml
spring:
  thymeleaf:
    prefix: classpath:/templates/ThymeLeaf/
    suffix: .html
指定thymeleaf模板的默认位置为: /templates/ThymeLeaf/
 模板的后缀名为“.html”
例:
controller中编写相关信息
@Controller
public class TestController {
    @RequestMapping("/index")
    public String test(Model m)
    {
         m.addAttribute("msg","adeal love java265.com");
         return "index";
    }
}
springboot修改ThymeLeaf模板位置的方法分享
版权声明

本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。

本文链接: https://www.Java265.com/JavaFramework/SpringBoot/202201/2223.html

最近发表

热门文章

好文推荐

Java265.com

https://www.java265.com

站长统计|粤ICP备14097017号-3

Powered By Java265.com信息维护小组

使用手机扫描二维码

关注我们看更多资讯

java爱好者