在jsp中显示不在根目录中的图像
使用 Tomcat 6.0 服务器,我尝试引用不在应用程序根目录中的图像文件,但收到一条 404 消息,指出请求的资源...不可用。 (如果我通过双击 Windows 资源管理器运行相同的程序,我可以使用相对和绝对引用,并且效果很好。)有没有办法使用 Tomcat 服务器访问该文件并使用标签显示它?
Using a Tomcat 6.0 server, I'm trying to reference an image file that's not in the root directory of the application, but I get a 404 message that says the requested resource...is not available. (If I run the same program from Windows Explorer by double-clicking on it, I can use relative and absolute references and it works fine.) Is there a way to access the file and display it with the tag, using a Tomcat server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下 JSTL 核心,更具体地说是
url
标记。它将动态添加链接中的上下文根 http://download.oracle.com/docs/cd/E17802_01/products/products/jsp/jstl/1.1/docs/tlddocs/c/tld-summary.htmlTake a look at JSTL core, more specifically at the
url
tag. It will dynamically add the context root in the links http://download.oracle.com/docs/cd/E17802_01/products/products/jsp/jstl/1.1/docs/tlddocs/c/tld-summary.html