Java WAR 文件中的 favicon.ico

发布于 2024-07-10 04:27:10 字数 59 浏览 12 评论 0原文

任何人都可以提供一些有关如何设置 war 文件以在浏览器地址栏中显示 favicon.ico 的说明吗?

Can anybody provide some instruction on how to setup a war file to show a favicon.ico in the browser address bar?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

软甜啾 2024-07-17 04:27:10

您还可以在 HTML 中使用以下 HTML 标记:

<link rel="icon" type="image/gif" href="/img/image.gif">

大多数较新的浏览器应该支持它,并且我认为这通常是一种更简洁的方式,因为您可以使用您想要的任何图像类型/名称/位置。

You can also use the following HTML markup in your HTML:

<link rel="icon" type="image/gif" href="/img/image.gif">

Most newer browsers should support it and I think it's generally a more clean way since you can use any image type/name/location you want.

倾城月光淡如水﹏ 2024-07-17 04:27:10

这在不同的应用程序服务器中可能会有所不同。 对于 tomcat,favicon 来自根上下文映射到的目录。 因此,如果您的应用程序映射到根上下文 [/],只需将 favicon.ico 文件放在您的 war 文件的顶级文件夹中即可。

This might be different in different application servers. For tomcat, the favicon comes from the directory your root context is mapped to. So if your application is mapped to the root context [/], just place the favicon.ico file in the top level folder in your war file.

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