我的jsp位于以下位置
http://myApp.com/myWebApp/customer/images/customer.jsp
我的图像(通过 customer.jsp 访问)位于
http://myApp.com/myWebApp/images/customer.gif
在图像标签中,我正在制作如下绝对路径
src="${param.contextPath}images/customer.gif"
仅供参考,我在这里使用参数,因为这是我们在 EL 中访问请求参数的方式。
我期待 ${param.contextPath} 将返回 /myWebApp/ 但它正在返回 /myWebApp/customer/。有没有办法我可以从请求中获取上下文路径(而不是客户命名空间),即 /myWebApp/?