SpringBoot访问html页面

1.pom.xml添加依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
	<artifactId>spring-boot-starter-web</artifactId>
</dependency>

2.application.properties中添加配置

spring.mvc.view.prefix=classpath:/templates/
spring.mvc.view.suffix=.html

3.创建html页面

因为在application.properties配置文件中添加的时解析templates文件夹的页面,所以只能在temples下创建html页面
SpringBoot访问html页面_第1张图片

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>你好啊,HTML页面</h1>
</body>
</html>

4.添加访问Url

package com.honger1234.controller;

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

@Controller
@RequestMapping("html")
public class TestHtmlController {
     

    @RequestMapping("hello")
    public Object hello(){
     
        return "hello";
    }
}

5.测试

http://localhost:8080/html/hello

SpringBoot访问html页面_第2张图片

你可能感兴趣的:(SpringBoot,spring,boot)