您的位置:首页 > 编程语言 > Java开发

SpringBoot入门:SpringBoot的thymeleaf模板的使用:spring-boot-starter-thymeleaf

2018-05-15 18:06 441 查看

首先在pom文件里面加入thymeleaf的jar包:

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
然后在resources里面新建一个文件夹:templates(创建工程的时候默认就有。如果没有的话,手动添加即可)

然后新建一个index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hello springboot</title>
</head>
<body>
<h1>hello springboot</h1>
<h2>成功运行!</h2>
</body>
</html>
然后写一个HelloController3
package com.imooc;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

@Controller
public class HelloController3 {

@RequestMapping(value = "/hello33",method = RequestMethod.GET)
public String say3(){
return "index";
}
}
//Controller和restcontroller是不一样的。controller必须配合模板使用
//这里只能用Controller注解,可以正常显示页面
//如果用RestController的话,显示不出页面,只会显示字符串"index"
在浏览器输入http://localhost:8082/hello33即可显示index.html页面内容。 阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: