欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Springboot访问html页面的教程详解

程序员文章站 2023-08-19 19:46:41
1. 在原有的项目resouces目录下创建static包,并在static下创建pages,然后在pages包下hello.html. 这时你会发现hello.html...

1. 在原有的项目resouces目录下创建static包,并在static下创建pages,然后在pages包下hello.html.

这时你会发现hello.html并没有在static中,它跑哪去了呢?打开src下的webapp,发现有一个hello.htm,删除web.xml,并将hello.html用鼠标左键移到static目录下;

Springboot访问html页面的教程详解

hello.html代码:

<!doctype html> 
<html> 
<head> 
<meta charset="utf-8"/> 
<title>insert title here</title> 
</head> 
<body> 
 <h1>springboot访问第一个html页面</h1> 
</body> 
</html> 

1.1. 创建springboot配置文件application.roperties

在创建resouces目录下创建application.properties,创建完成后会出现一个绿叶图标

Springboot访问html页面的教程详解

打开application.properties,添加如下配置:

spring.mvc.view.prefix=/pages/ 
spring.mvc.view.suffix=.html 

Springboot访问html页面的教程详解

1.2.修改springbootcontroller中的代码

Springboot访问html页面的教程详解

改成

Springboot访问html页面的教程详解

1.3.测试

启动appliction中的main方法(springboot应用的入口)

打开浏览器访问

效果:

Springboot访问html页面的教程详解

总结

以上所述是小编给大家介绍的springboot访问html页面的教程详解,希望对大家有所帮助