springboot下的templates目录的资源默认是受保护的,类似于javaweb项目的web-inf目录,但是给每个springboot的html页面都配置控制器跳转过于麻烦
在配置文件加如下:
spring.resources.static-locations=cl大学都有哪些专业asspath:/meta-inf/resources/, classpath:/resources/, classpath:/static/, classpath:/templates/, classpath:/public/
附上spring 各种配置的官方url:方便后期查阅
@controllerpublic class hellocontroller { @requestmapping("/test") public string test(model model){ model.addattribute("msg","<h1>templates测试</h1>"); model.addattribute("urs", arrays.aslist("lishao","liyuan")); return "/test"; }}
在html中调用
<body><h3>test</h3><!--不转义--><div th:text="${msg}"></div><!--转义h1--><div th:utext="${msg}"></div><hr><h3 th:each="ur : ${urs}" th:text="${ur}"></h3></body>
记得要导入templates的依赖
当你导入了templates依赖,
就会直接识别出来如何制作草莓酱文件下的test,简单方便
<!--templates--> <dependency> <groupid>org.thymeleaf</groupid> <artifactid>thymeleaf-spring5</artifactid> </dependency> <dependency> <groupid>org.springframework.boot</groupid> <artifactid>spring-boot-starter-thymeleaf<企业保安/artifactid> </dependency>百家讲坛诸葛亮;
html中也要导入
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
一个是转义一个是不转义
以下是运行的结果
以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。
本文发布于:2023-04-04 03:18:34,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/d63cf5a5991e850d32be63c94b94e043.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:springboot配置templates直接访问的实现.doc
本文 PDF 下载地址:springboot配置templates直接访问的实现.pdf
留言与评论(共有 0 条评论) |