我正在使用Spring Boot 2.1.5。RELEASE和wnat使用Thymeleaf生成json模板文件。
下面是我目前拥有的1个文件的示例
{
"apiVersion": "apps/v1",
"kind": "Deployment",
"metadata": {
"labels": {
"run": "[( ${imageNameLabel} )]"
},
"name": "[( ${imageNameLabel} )]"
},
"spec": {
"replicas": [( ${replicas} )],
"selector": {
"matchLabels": {
"run": "[( ${imageNameLabel} )]"
}
},
"template": {
"metadata": {
"labels": {
"run": "[( ${imageNameLabel} )]"
}
},
"spec": {
"containers": [
{
"image": "[( ${imageName} )]:[( ${imageVersion} )]",
"name": "[( ${imageNameLabel} )]",
"env": [( ${credentials} )],
"volumeMounts": [
{
"mountPath": "/etc/foo",
"name": "[( ${imageNameLabel} )]",
"readOnly": true
}
]
}
],
"volumes": [
{
"name": "[( ${imageNameLabel} )]",
"secret": {
"secretName": "[( ${imageNameLabel} )]"
}
}
]
}
}
}
}
我现在想把条件逻辑放入这个文件。这可能与thymeleaf或有其他模板技术,我应该看看?
谢谢你Damien
请参阅文本模板模式的留档。一个示例if可能看起来像:
[# th:if="${condition}" th:text="${item}" /]
或
[# th:if="${condition}"][(${imageNameLabel})][/]
本文向大家介绍SpringBoot中的Thymeleaf模板,包括了SpringBoot中的Thymeleaf模板的使用技巧和注意事项,需要的朋友参考一下 一、前言 Thymeleaf 的出现是为了取代 JSP,虽然 JSP 存在了很长时间,并在 Java Web 开发中无处不在,但是它也存在一些缺陷: 1、JSP 最明显的问题在于它看起来像HTML或XML,但它其实上并不是。大多数的JS
我想在HTML中显示一个请求的对象,我得到了一个错误,我不知道是什么原因导致了我的错误。谷歌帮不上忙,现在我试着问你。我认为错误不是来自我的表,因为我把它注释掉了,错误仍然是Occour。该错误也不是来自“http://localhost:8081/simulation”,因为我使用有效值重新接收了一个有效的JSON。谢谢你的帮助:)。 下面是我的代码: 我通过调用“http://localhos
本文向大家介绍springboot中thymeleaf模板使用详解,包括了springboot中thymeleaf模板使用详解的使用技巧和注意事项,需要的朋友参考一下 这篇文章将更加全面详细的介绍thymeleaf的使用。thymeleaf 是新一代的模板引擎,在spring4.0中推荐使用thymeleaf来做前端模版引擎。 thymeleaf介绍 简单说, Thymeleaf 是一个跟 Vel
本文向大家介绍springBoot加入thymeleaf模板的方式,包括了springBoot加入thymeleaf模板的方式的使用技巧和注意事项,需要的朋友参考一下 1.新建springBoot项目 在前面有两种方式 2.加入thymeleaf模板引擎 SpringBoot推荐使用thymeleaf模板引擎 语法简单,功能更强大 要想引入thymeleaf,只需要在pom,xml文件中加入如下依
问题内容: 我的CSS和Thymeleaf有问题。 在我的Spring启动应用程序中,我具有以下结构: src / main / resource / static / css(用于CSS文件) src / main / resource / static / templates(用于html文件) 现在,使用我的Thymeleaf,将我的html页面命名为ErrorPage,将css文件命名为L
本文向大家介绍SpringBoot使用thymeleaf模板过程解析,包括了SpringBoot使用thymeleaf模板过程解析的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了SpringBoot使用thymeleaf模板过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 1.导入依赖 2.application.yml文件中新