Springboot自定义图标无法显示问题:
解决方案:
在index.html中加入:
<link rel="shortcut icon" href="./favicon.ico" rel="external nofollow" rel="external nofollow" />
例如:
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>首页</title>
<!--显示自定义图标的代码-->
<link rel="shortcut icon" href="./favicon.ico" rel="external nofollow" rel="external nofollow" />
</head>
<body>
欢迎来到,首页.
</body>
</html>