首页 > 作文

SpringBoot项目中如何访问HTML页面

更新时间:2023-04-03 23:19:14 阅读: 评论:0

目录
1、将html页面存放在resources/static目录下的访问2、将html页面存放在resources/templates目录下的访问2.1 方式一解决springboot不能直接访问templates目录下的静态资源(不推荐)2.2 方式二通过controller控制器层跳转访问的资源(推荐)

springboot默认的页面映射路径(即模板文件存放的位置)为“classpath:/templates/*.html”新公司注册流程及步骤。静态文件路径为“classpath:/static/”,其中可以存放js、css等模板共用的静态文件。

1、将html页面存放在resources/static目录下的访问

将html页面存放在 resources(资源目录)下的 static 目录中。

【示例】在static目录下创建test1.html页面,然后在static目录下创建view目录,在view目录下创建test2.html页面,实现在浏览器中的访问。项目结构如下图:

(1)在static目录下创建test1.html页面,页面代码如下:

<!doctype html><html lang="en"><head>    <meta chart="utf-8">    <title>测试页面1</title>    <meta name="autho盈余管理r" content="pan_junbiao的博客"></head><body>    <h3>测试页面1</h3>    <p>您好,欢迎访问 pan_junbiao的博客</p>    <p>https://blog.csdn.net/pan_junbiao</p></body></html>

执行结果:

(2)在static目录下创建view目录,在view目录下创建test2.html页面,页面代码如下:

<!doctype html><html lang="en"><head>    <meta chart="utf-8">    <title>测试页面2</title>    <meta name="author" content="pan_junbiao的博客"></head><body>    <h3>测试页面2</h3>    <p>您好,欢迎访问 pan_junbiao的博客</p>    <p>https://blog.csdn.net/pan_junbiao</p></body></html>

执行结果:

2、将html页面存放在resources/templates目录下的访问

将html页面存放在 resources(资源目录)下的 templates 目录中。

【示例】在templates目录下创建test3.html页面,实现在浏览器中的访问。

在templates目录下创建test3.html页面,页面代码如下:

<!doctype html><html lang="en"><head>    <meta chart="utf-8">    <title>测试页面3</title>    <meta name="author" content="pan_junbiao的博客"></head><body>    <h3>测试页面3</h3>    <p>您好,欢迎访问 pan_junbiao的博客</p>    <p>https://blog.csdn.net/pan_junbiao</p></body></html>

2.1 方式一

解决springboot不能直接访问templates目录下的静态资源(不推荐)

springboot项目下的templates目录的资源默认是受保护的,没有开放访问权限。这是因为templates文件夹,是放置模板文件的,因此需要视图解析器来解析它。所以必须通过服务器内部进行访问,也就是要走控制器 → 服务 → 视图解析器这个流程才行。同时,存在安全问题,比如说,你把你后台的html文件放到templates,而这个文件夹火车票预订时间对外又是开放的,就会存在安全隐患。

解决方法:在application.yml或者application.properties配置文件中将访问权限开放(不推荐)

application.yml文件配置:

spring:  resources:    static-locations: classpath:/meta-inf/resources/, classpath:/resources/, classpath:/static/, classpath:/public/, classpath:/templates/

application.properties文件配置:

spring.resources.static-locations=classpath:/meta-inf/resources/,classpath:/resources/,classpath:/static/,classpath:/public/,classpath:/templates/

配置完成后,启动springboot,在浏览器中输学历证书怎么查入地址就可以直接访问templates目录下的静态资源了。

执行结果:

2.2 方式二

通过controller控制器层跳转访问的资源(推荐)

在源代码层中创建controller目录(控制器层),在controller目录下创建indexcontroller(首页控制器类),项目结构nov是几月如下图:

(1)pom.xml文件的配置

注意:一定要添加thymeleaf的依赖。

<!-- thymeleaf依赖 --><dependency>    <groupid>org.springframework.boot</groupid>    <artifactid>spring-boot-starter-thymeleaf</artifactid></dependency>

(2)编写控制器方法

创建indexcontroller(首页控制器类),代码如下:

package com.pjb.springboothtml.controller; import org.springframework.stereotype.controller;import org.springframework.web.bind.annotation.requestmapping; /** * 首页控制器 * @author pan_junbiao **/@controllerpublic class indexcontroller{    @requestmapping("/test3")    public string test3()    {        return "test3";    }}

执行结果:

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。

本文发布于:2023-04-03 23:19:12,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/fc369e9a799ec91d038c76fd6aa9589a.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:SpringBoot项目中如何访问HTML页面.doc

本文 PDF 下载地址:SpringBoot项目中如何访问HTML页面.pdf

标签:页面   目录下   放在   控制器
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图