常用默认配置
小于 1 分钟Spring全家桶SpringBoot精讲细讲
约定大于配置
欢迎页
默认会到resources目录下static中找index.html
classpath:static/index.html
classpath:public/index.html
如果使用了thymeleaf模板引擎,一般直接把index.html放到templates下。
classpath:templates/index.html
错误页
在resources目录下的static目录新建error目录,放入对应的错误页面就可以了,SpringBoot会自动来这里找。
classpath:static/error/404.html
classpath:static/error/500.html
自定义banner
在resources根目录下新建一个banner.txt文件,放入对应的logo字符串。SpringBoot会自动来这里找。
src/main/resources/banner.txt