I have a web application deployed in tomcat. When I open the application in a browser, the image before the URL in the address bar and the image before the title of the application on the tab both show the tomcat image. I want to change this and put in my own logo in both the places. How can I do that?

link|improve this question

73% accept rate
feedback

1 Answer

This image is called the favicon.ico and is found in your tomcat installation under

$tomcat-home\webapps\ROOT

Just replace it with your own icon image saved as favicon.ico

In code try

<head>
<link rel="shortcut icon" href="http://www.yoursite.com/favicon.ico"> 
</head>
link|improve this answer
is there anyway to do this programatically? so that by default the icon is displayed – user811433 Nov 11 '11 at 10:32
why would you want to do this programatically? If you change the image on disk, it can get cached by browsers and wont be evaluating at runtime (as done programatically) – JoseK Nov 11 '11 at 10:43
I dont want to replace the icon manually in tomcat as we can not ask users to do that in a real time env – user811433 Nov 11 '11 at 10:56
try the code i posted – JoseK Nov 11 '11 at 11:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.