我已经集成了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实现还是以其他方式实现?能否请你提供这样一个页面的实现?感谢。
答案 0 :(得分:2)
我也使用spring-boot和vaadin,没有什么特别的。您可以在此处查看可能的配置:http://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-developing-web-applications.html
因此,您可以配置@ControllerAdvice
来执行此操作!
希望有所帮助! :)
此致