springboot配置templates直接访问的实现
程序员文章站
2022-06-19 17:58:30
目录springboot配置templates直接访问配置公有访问方式如下springboot的templates用法在controller中添加视图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用法
@controller public class hellocontroller { @requestmapping("/test") public string test(model model){ model.addattribute("msg","<h1>templates测试</h1>"); model.addattribute("users", arrays.aslist("lishao","liyuan")); return "/test"; } }
在controller中添加视图
在html中调用
<body> <h3>test</h3> <!--不转义--> <div th:text="${msg}"></div> <!--转义h1--> <div th:utext="${msg}"></div> <hr> <h3 th:each="user : ${users}" th:text="${user}"></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">
一个是转义一个是不转义
以下是运行的结果
以上为个人经验,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
nginx配置ssl证书实现https访问的示例
-
CentOS7 配置Nginx支持HTTPS访问的实现方案
-
nginx 配置虚拟主机,实现在一个服务器可以访问多个网站的方法
-
SpringBoot实现本地存储文件上传及提供HTTP访问服务的方法
-
nginx配置ssl实现https访问的步骤(适合新手)
-
nuxt配置通过指定IP和端口访问的实现
-
Express 配置HTML页面访问的实现
-
SpringBoot获取配置文件的简单实现方法
-
基于logback 实现springboot超级详细的日志配置
-
Springboot集成通用Mapper与Pagehelper,实现mybatis+Druid的多数据源配置