springboot配置跳轉html頁面

1,首先在pom文件中引入模板引擎jar包

<dependency>
   <groupId>org.springframework.boot</groupId>
   <artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2,在application.properties中配置模板引擎
spring.thymeleaf.prefix=classpath:/templates/
3,在templates下建立login.html文件
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8"/>
    <title>Title</title>
</head>
<body>
<h1>1314314141</h1>
</body>
</html>
4,寫controller
package com.example;

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

/**
 * Created by hzm on 2017/4/1.
 */
@Controller
public class HelloController {


    @RequestMapping("/test")
    public String test(){ 
        return "login";
    }
}
5輸入網址
http://localhost:8080/test

6頁面會出現

1314314141



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章