怎样设置spingBoot项目在浏览器中访问的时候的应用图标
时间: 2024-10-15 19:23:33 浏览: 11
springboot结合https证书部署成https的应用内容;
在Spring Boot项目中,如果你想设置应用程序在浏览器中访问时显示的图标(也称为 favicon),通常是在HTML模板文件如`index.html` 或者 `static/index.html` 中设置`<link>`标签来引用。这里是一个简单的步骤:
1. 创建或找到项目的`resources/static`目录下的`favicon.ico` 文件,这通常是16x16、32x32或48x48像素的ICO格式图片。
2. 在`templates`(如果是Thymeleaf)、`src/main/resources/templates`(MVC Spring)或者`public`(WebMvc配置)下,编辑主页面`index.html` 或其他默认欢迎页面。
3. 添加类似下面的 `<link>` 标签到<head>部分,指定`rel="icon"` 和 `href` 属性指向你的favicon图片路径:
```html
<link rel="icon" type="image/x-icon" href="/favicon.ico">
```
或者:
```html
<link rel="shortcut icon" type="image/png" href="/favicon.png">
```
这里的`/favicon.ico`或`/favicon.png`应替换为你实际的图片路径(相对于应用的根URL)。
4. 确保在Spring Boot的`application.properties` 或者`application.yml`文件中已经启用了静态资源的映射,例如:
```properties
spring.resources.add-mappings=true
spring.resources.static-locations=classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/,classpath:/public/
```
如果你的资源放在其他位置,记得更新相应的路径。
5. 最后,重启你的Spring Boot应用,刷新浏览器,你应该能看到新的图标了。
阅读全文