Vaadin 7 + Spring 引导错误页面

Vaadin 7 + Spring Boot error page

我已经集成了 Vaadin 7 和 Spring Boot。现在我需要实现错误视图以替代标准页面,例如:

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this as a fallback.
Mon May 23 10:50:20 EEST 2016
There was an unexpected error (type=Forbidden, status=403).
Access is denied

它应该作为单独的 Vaadin UI 还是以其他方式实现?你能给我提供这样一个页面的实现吗?谢谢

我也使用 spring-boot 和 vaadin,那里没有什么特别的。您可以在此处查看可能的配置:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html

所以你可以配置一个 @ControllerAdvice 来做这个技巧!

希望对您有所帮助! :)

此致