一尘不染

将Spring Boot WAR部署到Tomcat并缺少静态资源的上下文

tomcat

将Spring Boot应用程序作为WAR文件部署到独立的Tomcat
7服务器时遇到问题。它可以很好地构建和部署,但是当index.html页尝试加载其他静态资源时,它们缺少url中的上下文,因此无法加载(404)。

例如 http://localhost:8080/app/images/springboot.png

应该: http://localhost:8080/spring-boot-war-context- issue/app/images/springboot.png

图片显示问题

使用嵌入式Tomcat时效果很好

类似问题:

似乎与以下问题类似: Spring-Boot
war外部Tomcat上下文路径

但是,该问题中的建议似乎无法解决我的问题。我不确定Tomcat xml文件。

遵循的步骤:

我创建了一个简单的示例应用程序,并遵循了Spring Boot文档中的步骤。

可以在此github存储库中查看示例代码以及重现该问题的步骤:https : //github.com/jgraham0325/spring-boot-war-context-
issue

到目前为止我尝试过的事情:

  • 在application.properties中设置contextPath,但这仅适用于嵌入式tomcat
  • 尝试使用全新安装的Tomcat 7
  • 尝试在tomcat中创建配置文件以强制上下文:apache-tomcat-7.0.72 \ conf \ Catalina \ localhost \ spring-boot-war-context-issue.xml

spring-boot-war-context-issue.xml的内容:

    <Context 
    docBase="spring-boot-war-context-issue" 
    path="spring-boot-war-context-issue" 
    reloadable="true" 
    />

任何建议将不胜感激!

谢谢

更新23/10/2016:

以下是亚历克斯(Alex)的答案,即在一开始就使用相对URL而不加斜杠,这是完美的解决方案!


阅读 735

收藏
2020-06-16

共1个答案

一尘不染

这不是单纯由您定义url的方式引起的index.html(该url不包含context root):

<img src="/app/images/springboot.png" />

使用相对uri

您应该可以使用相对uri(不使用前导斜杠):

<img src="app/images/springboot.png" />

使用JSP / JSTL:

<img src="${pageContext.request.contextPath}/app/images/springboot.png" />

或使用Javascript:

function getContextPath() {
   return window.location.pathname.substring(0,  window.location.pathname.indexOf("/",2));
}
...
var img = new Image();
img.src = getContextPath() + "/app/images/springboot.png";
document.getElementById('div').appendChild(img);
2020-06-16