springboot项目添加html

1.application.yml 配置

spring:
  thymeleaf:
    prefix: classpath:/templates/
    suffix: .html
    mode: LEGACYHTML5
    cache: false

server:
  port: 29000

2.pom.xml配置

	
     
         org.springframework.boot
         spring-boot-starter-thymeleaf
     

3.controller写法

package com.xjn.demo.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class PageController {

	//通过controller返回html界面
    @RequestMapping("/test")
    public  String testJumpPage(){
        return "test";
    }
    
    //通过controller返回html界面
    @RequestMapping("/index")
    public  String indexJumpPage(){
        return "index";
    }
}

4.html写法,html位置:demo\src\main\resources\templates\index.html
demo\src\main\resources\templates\test.html
index.html




    
    spring boot web project


    
spring boot web project index.html

test.html




    
    spring boot web project


    
==================spring boot web project test=======================

5.启动项目,浏览器访问html,通过controller返回html界面:
http://localhost:29000/index
http://localhost:29000/test

你可能感兴趣的:(java,springboot)