码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot使用Html

时间:2019-08-16 18:52:09      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:ppi   set   png   XML   start   http   doc   head   cti   

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

标签:ppi   set   png   XML   start   http   doc   head   cti   

原文地址:https://www.cnblogs.com/linlf03/p/11365626.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!