欢迎页
将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
注:设置资源前缀、项目根目录会使图标失效
标签:http,欢迎,默认,favicon,static,8080,localhost From: https://www.cnblogs.com/ixtao/p/16726916.html