jsp中如何获取基本url?
我使用 jsp 和 servlet 创建一个简单的项目。我想链接我的 jsp 文件中的 css。那么任何人都可以告诉我如何做到这一点吗?
Im creating a simple project by using jsp and servlet. I want to link the css in my jsp file. So any one can tell me the way to do this??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需要执行以下操作:
前提是您的 .jsp 文件附近的文件夹“css”中有 style.css 文件。您不需要知道基本 URL,这将适用于任何指向您的 .jsp 文件的基本 URL。
You just need to do:
provided that you have style.css file in folder "css" near your .jsp file. You don't need to know the base URL for that, this will work with any base URL that leads to your .jsp file.
尝试:
请注意,这将为您提供上下文的相对 URL。
Try:
Note that this will give you a relative url to the context.