SpringBoot 使用Thymeleaf解决静态页面跳转问题

参考:springboot配置跳转html页面

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

 


   org.springframework.boot
   spring-boot-starter-thymeleaf
2,在application.properties中配置模板引擎
 
   
spring.thymeleaf.prefix=classpath:/templates/

3,在templates下建立login.html文件

 
   
html>
lang="en">

    charset="UTF-8"/>
    Title


1314314141

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

 

转载于:https://www.cnblogs.com/huanghongbo/p/8934059.html

你可能感兴趣的:(SpringBoot 使用Thymeleaf解决静态页面跳转问题)