应用起步,一句代码快速拥有错误页面
使用Spring Boot搭建一个应用, 你需要去处理错误页面, 虽然,Spring Boot为我们提供了默认的方式, 但是,这并不是我们想要的, 多数情况,我们都会去自己处理。 基于此,我想把这一部分抽离出来, 只为下一个应用, 一个引入,就可以解决这些问题。
你只需要两步,即可使用:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.iutil</groupId>
<artifactId>app-boot-starter</artifactId>
<version>1.0.0.SNAPSHOT</version>
</dependency>
错误页面命名:
404.html
500.html
error.html
路径:
.
└── src
└── resources
├── static
│ └── css
│ └── error
│ └── style.css // 样式
└── templates
└── error
├── 404.html // 404页面
├── 500.html // 500页面
└── error.html // 错误页面