Gangmax Blog

Change Spring Boot Favicon

From here.

By default a Spring Boot web application has a default favicon which is the Spring logo. There are several ways to change it.

The easist way is to add a customized favicon file as “src/main/resources/favicon.ico” or “src/main/resources/static/favicon.ico”.

You can also disable the “favicon” by adding configuration and code. The details can be found in the original post.

Comments