博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
物联网架构成长之路(14)-SpringBoot整合thymeleaf
阅读量:6543 次
发布时间:2019-06-24

本文共 955 字,大约阅读时间需要 3 分钟。

  使用thymeleaf作为模版进行测试

  在pom.xml 增加依赖

1 
2
org.springframework.boot
3
spring-boot-starter-thymeleaf
4

  在application.properties中进行配置

1 #thymeleaf start2 spring.thymeleaf.mode=HTML53 spring.thymeleaf.encoding=UTF-84 spring.thymeleaf.content-type=text/html5 #开发时关闭缓存,不然没法看到实时页面6 spring.thymeleaf.cache=false7 spring.thymeleaf.prefix=classpath:/templates/8 spring.thymeleaf.suffix=.html9 #thymeleaf end

  在 src/main/resources 下新建 templates 目录 并创建 hellohtml.html 文件

1    2    4        5         Hello World!   6        7        8         

Hello.v.2

9

10 11

  增加Controller

1 @Controller2 @RequestMapping("/html")3 public class ThymeleafController {4     @RequestMapping("/hellohtml")5     public String helloHtml(Map
map) {6 map.put("hello", "from TemplateController.helloHtml");7 return "/hellohtml";8 }9 }

  预览看效果

  关于thymeleaf更多的语法这里就不展开说了。

转载地址:http://ssodo.baihongyu.com/

你可能感兴趣的文章
Linux运维学习笔记之一:运维的原则和学习方法
查看>>
怎样使用原型设计中的组件样式功能
查看>>
python threading
查看>>
谷安天下2013年6月CISA考前辅导 第一季
查看>>
ARM程序规范
查看>>
我的友情链接
查看>>
Qt下的OpenGL 编程(8)文字、FPS、动画
查看>>
Android开发入门系列
查看>>
说清楚讲明白vxlan在openstack中的使用场景
查看>>
RHCE 学习笔记(36) - MariaDB
查看>>
文件删除封装,懒得以后再写了
查看>>
Linux 脚本之用户创建
查看>>
Mysql字段类型设计相关问题!
查看>>
Xshell 密钥登陆
查看>>
所见不为真--图片格式文件检测python
查看>>
分享几种常用的嵌入式Linux GUI及其特点—干货
查看>>
Confluence 6 "Duplicate Key" 相关问题解决
查看>>
第18章 使用MariaDB数据库管理系统
查看>>
浅谈MySQL的B树索引与索引优化
查看>>
数据库迁移工具
查看>>