欢迎页与favicon

欢迎页

将index.html放入默认的静态资源路径下,会默认访问。

访问路径:http://localhost:8080/

如下设置了项目的根访问路径,则欢迎页访问需使用:http://localhost:8080/my/

spring:
# mvc:
# static-path-pattern: /res/**
resources:
static-locations: [classpath:/files/,classpath:/static/]
server:
servlet:
context-path: /my

注:配置资源前缀会导致欢迎页失效

 

favicon自定义图标

将favicon.ico文件放在静态资源默认路径static下,浏览器会默认请求:http://localhost:8080/favicon.ico

注:设置资源前缀、项目根目录会使图标失效

 

posted @ 2022-09-24 22:50  Mr_sven  阅读(39)  评论(0编辑  收藏  举报