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

首先在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页面内容。

猜你喜欢

转载自blog.csdn.net/qq_22182989/article/details/80326711