将Spring Boot应用程序作为WAR文件部署到独立的Tomcat 7服务器时遇到问题。它可以很好地构建和部署,但是当index.html页尝试加载其他静态资源时,它们缺少url中的上下文,因此无法加载(404)。
例如 http://localhost:8080/app/images/springboot.png
http://localhost:8080/app/images/springboot.png
应该: http://localhost:8080/spring-boot-war-context- issue/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
spring-boot-war-context-issue.xml的内容:
<Context docBase="spring-boot-war-context-issue" path="spring-boot-war-context-issue" reloadable="true" />
任何建议将不胜感激!
谢谢
以下是亚历克斯(Alex)的答案,即在一开始就使用相对URL而不加斜杠,这是完美的解决方案!
这不是单纯由您定义url的方式引起的index.html(该url不包含context root):
index.html
context root
<img src="/app/images/springboot.png" />
您应该可以使用相对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);