톰캣의 디폴트 (Default) favicon.ico을 변경하기 위해 다음 파일을 replace할 수 있다.
$CATALINA_HOME/webapps/ROOT/favicon.ico
이를 replace하면 모든 JSP가 영향을 받는다.
혹은 각 JSP 파일마다 다음과 같이 추가할 수도 있다.
<link href=”some_favicon.png” rel=”icon” type=”image/x-icon” />
이 경우에는 파일 이름과 확장자에 제약을 받지 않는다.
References:
http://stackoverflow.com/questions/10561112/how-do-you-remove-tomcats-default-favicon
http://stackoverflow.com/questions/399286/favicon-ico-in-java-war-file