Spring Boot使用Html
Posted linlf03
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot使用Html相关的知识,希望对你有一定的参考价值。
1、引入模板thymeleaf
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
增加配置
spring: thymeleaf: prefix: classpath:/templates/
2、增加接口
@RequestMapping("/hello") public String hellohtml(HashMap<String, Object> map) map.put("hello", "hello world~"); return "/index";
3、创建Html页面 index.html 路径为:resources/templates/index.html
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8" /> <title>Title</title> </head> <body> <p th:text="$hello"></p> </body> </html>
4、查看效果
以上是关于Spring Boot使用Html的主要内容,如果未能解决你的问题,请参考以下文章