千家信息网

如何进行springboot配置templates直接访问的实现

发表于:2025-01-22 作者:千家信息网编辑
千家信息网最后更新 2025年01月22日,这篇文章给大家介绍如何进行springboot配置templates直接访问的实现,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。springboot配置templates直接访问
千家信息网最后更新 2025年01月22日如何进行springboot配置templates直接访问的实现

这篇文章给大家介绍如何进行springboot配置templates直接访问的实现,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。

springboot配置templates直接访问

springboot下的templates目录的资源默认是受保护的,类似于javaweb项目的WEB-INF目录,但是给每个springboot的html页面都配置控制器跳转过于麻烦

配置公有访问方式如下

在配置文件加如下:

spring.resources.static-locations=classpath:/META-INF/resources/, classpath:/resources/, classpath:/static/, classpath:/templates/, classpath:/public/

附上spring 各种配置的官方url:方便后期查阅

springboot的templates用法

@Controllerpublic class HelloController {    @RequestMapping("/test")    public String test(Model model){        model.addAttribute("msg","

templates测试

"); model.addAttribute("users", Arrays.asList("lishao","liyuan")); return "/test"; }}

在controller中添加视图

在html中调用

test


记得要导入templates的依赖

当你导入了templates依赖,

就会直接识别出来文件下的test,简单方便

                     org.thymeleaf            thymeleaf-spring5                            org.springframework.boot            spring-boot-starter-thymeleaf        

html中也要导入

一个是转义一个是不转义

以下是运行的结果

关于如何进行springboot配置templates直接访问的实现就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0