如何在java中为Web应用程序设置图标?
我有一个在 tomcat 上运行的 Web 应用程序。我想为其设置一个图标。我应该把它放在 tomcat web 应用程序的哪里。
I have a web application running on tomcat. I want to setup a favicon for it. Where should i place it in the tomcat web application.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您将名为
favicon.ico
的文件放置在文档根目录 (/
) 中,它将自动使用。If you place a file called
favicon.ico
in your document root (/
), it will automatically used.只是总结答案(1,2) up:
将你的图标命名为
favicon.ico
并将其放入/src/main/webapp
(对于 Maven布局)或/WebContent
(对于标准 Eclipse 布局)。在每个 HTML 页面(或母版页,如果存在)中指定图标:
使用 Ctrl+F5 刷新项目/清理/重新启动服务器/刷新页面(跳过浏览器缓存)。
Just to summarize answers (1, 2) up:
Name your icon
favicon.ico
and put it into the/src/main/webapp
(for Maven layout) or/WebContent
(for standard Eclipse layout).Specify icon in every HTML page (or master page if present):
<head>
<link rel="shortcut icon" href="favicon.ico"/>
</head>
Refresh project / clean/restart server / refresh page with Ctrl+F5 (to skip browser's cache).
这可能很有用,但我不记得必须这样做:
http://stonescape.净/滚轮/xtian/entry/implementing_favicon_ico_with_tomcat
This might be useful, but I don't remember having had to do it:
http://stonescape.net/roller/xtian/entry/implementing_favicon_ico_with_tomcat