Search code examples
javaspring-mvcfavicon

How to change tab icon in Spring MVC project?


Tab Icon

How and where can I change it in Spring MVC project?


Solution

  • Put the favicon.ico in the root of your webapp (the webapp folder, like this).

    Out of habit in SpringMVC, I also put the following mapping.

    <mvc:resources location="/favicon.ico" mapping="/favicon.ico" />