时间:2021-05-20
静态资源路径
静态资源支持放在以下路径中,访问优先级从上到下:
classpath:/META-INF/resources/
classpath:/resources/
classpath:/static/ # 默认路径
classpath:/public/
其中 classpath 为 src/main/resources 目录。
请求地址为:http://localhost:8080/xx.js
首页
文件位置:
classpath:/static/favicon.ico
classpath:/templates/index.html
导入 thymeleaf 模板引擎依赖:
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.thymeleaf</groupId> <artifactId>thymeleaf-spring5</artifactId> </dependency> <dependency> <groupId>org.thymeleaf.extras</groupId> <artifactId>thymeleaf-extras-java8time</artifactId> </dependency></dependencies>定义请求控制器:
@Controllerpublic class IndexController { @RequestMapping({"/", "/index.html"}) public String index(Model model){ model.addAttribute("msg", "Hello, Thymeleaf!"); return "index"; }}加入模板内容显示首页:
<!DOCTYPE html><html lang="en" xmlns:th="http://www.thymeleaf.org"><head> <meta charset="UTF-8"> <title>index page</title></head><body> <h1>首页</h1> <div th:text="${msg}"></div></body></html>以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
在Springboot中默认的静态资源路径有:classpath:/METAINF/resources/,classpath:/resources/,cla
springboot配置本地资源映射路径需要配置一下映射资源位置,下面来介绍一下过程。1.添加配置类packageorg.jcut.tools;importor
静态资源处理SpringBoot默认的处理方式就已经足够了,默认情况下SpringBoot使用WebMvcAutoConfiguration中配置的各种属性。建
一、概述springboot默认静态资源访问的路径为:/static或/public或/resources或/META-INF/resources这样的地址都必
静态资源访问默认配置/static/public/resources/META-INF/resources渲染Web页面模板引擎SpringBoot提供了默认配