jsp中如何获取基本url?

发布于 2024-11-01 05:31:31 字数 75 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫尐诺 2024-11-08 05:31:31

您只需要执行以下操作:

<link rel="stylesheet" type="text/css" href="css/style.css"/>

前提是您的 .jsp 文件附近的文件夹“css”中有 style.css 文件。您不需要知道基本 URL,这将适用于任何指向您的 .jsp 文件的基本 URL。

You just need to do:

<link rel="stylesheet" type="text/css" href="css/style.css"/>

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.

天荒地未老 2024-11-08 05:31:31

尝试:

<c:url var="baseUri" value="/" />

请注意,这将为您提供上下文的相对 URL。

Try:

<c:url var="baseUri" value="/" />

Note that this will give you a relative url to the context.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文