转载Spring-Boot-设置项目名后静态文件相对路径问题

58次阅读

共计 928 个字符,预计需要花费 3 分钟才能阅读完成。

原博客地址:https://blog.csdn.net/qq_2928…

出现问题的原因

server.servlet.context-path=testDemo
spring.mvc.static-path-pattern=/static/**
定义项目名和静态资源路径后发现,templates 中 html 中引用的 css,js 的相对路径出现异常

在上面目录中,index.html 通过相对路径引用 css href=”../static/xxx” 就获取不到了
在没有定义 server.servlet.context-path=testDemo 的前 href=”../static/xxx” 这样写是没有问题的

在设置项目名后,使用相对路径的时候就会缺少项目名,从而获取不到静态资源

解决方案

  • 使用绝对路径
  • 修改路径,将 href=”../static/xxx” 改成 href=”static/xxx”
  • 使用 spring thymeleaf 的 th:src 或者 th:href 属性改变标签的链接路径,如
 <link rel="stylesheet"  th:href="@{/pace/themes/blue/pace-theme-flash.css}>

但这 3 种方案,编译器无法识别路径,导致编写代码无提示,这就很难受了,下面两种方案以解决编译器无法提示的问题

  • 同样使用 spring thymeleaf 的 th:src 或者 th:href,并且写的时候再加多 src,href 供编译识别(推荐)
  <link rel="stylesheet"  href="../static/pace/themes/blue/pace-theme-flash.css"  th:href="@{/pace/themes/blue/pace-theme-flash.css}">
  • 不使用 thymeleaf 或者不想每个 css,js 引入都多写一次路径,在 html head 添加 <base href=”XXX/”> 标签,这样../ 就不会丢失项目名,而是去掉了 XXX/
<base href="XXX/">
<link rel="stylesheet"  href="../static/pace/themes/blue/pace-theme-flash.css">

正文完
 0