SpringBoot访问本地的Html(2020最新版本)

本项目用了thymeleaf

1.前言

网上教程都好多哦。按照他们代码演示,又出不来。后面自己去找问题,发现是依赖不是以前的旧版本了。所以我换个依赖就跟网上的一样了,就可以出效果了。

2.添加依赖


        <dependency>
            <groupId>org.thymeleafgroupId>
            <artifactId>thymeleaf-spring5artifactId>
        dependency>
        <dependency>
            <groupId>org.thymeleaf.extrasgroupId>
            <artifactId>thymeleaf-extras-java8timeartifactId>
        dependency>

3.编写application.properties

spring.thymeleaf.prefix=classpath:/templates/

4.建立文件夹templates

SpringBoot访问本地的Html(2020最新版本)_第1张图片
这里我随便给给个index.html吧


<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8"/>
    <title>第一个HTML页面title>
head>
<body>
<h1>Hello Spring Boot!!!h1>
body>
html>

5.编写Controller层

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

@Controller
public class WelcomeController {
     

    //这里是网址名,随便写
    @RequestMapping("/indextwo")
    public String index(){
     
        //这里对应的是你的html文件名
        return "/index";
    }
}

6.结果为

SpringBoot访问本地的Html(2020最新版本)_第2张图片

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