Add convention based status error pages

Update `spring-boot-sample-web-mustache` to show how convention based
status error pages can be used.

See gh-2691
This commit is contained in:
Phillip Webb
2016-04-29 10:43:10 -07:00
parent 0bf025af7b
commit 6d069de79f
5 changed files with 91 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<body>
I'm a 503
</body>
</html>

View File

@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<body>
I'm a 5xx
</body>
</html>

View File

@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<body>
I'm a 507
</body>
</html>