Java + Vaadin + tomcat使用web.xml

时间:2015-09-09 10:32:40

标签: java spring maven vaadin7

要求:

我想在服务器控制台中获得任何异常(即NullPointer,IndexOutofBoundsException等)时显示错误页面。

系统要求:

我们正在使用apache tomcat 7.0.61,maven 3.2.3,Spring和Vaadin 7(For UI Framework)。

我们的WEB.XML文件:

<context-param>
..............
</context-param>

<context-param>
<param-name>contextClass</param-name>
<param-value>
org.springframework.web.context.support.AnnotationConfigWebApplicationContext
</param-value>
</context-param>
 .....
<listener>
<listener-class>
    org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>Vaadin Application Servlet</servlet-name>
<servlet-class>com.vaadin.server.VaadinServlet</servlet-class>
<init-param>
    <description>Vaadin UI to display</description>
    <param-name>UI</param-name>
    <param-value>com.lone.ui.LoneUI</param-value>
</init-param>
<init-param>
    <description>Application widgetset</description>
    <param-name>widgetset</param-name>
    <param-value>com.lone.ui.AppWidgetSet</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>Vaadin Application Servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>

所以我浏览并尝试了一些场景:

情景1)

首先我配置了

<error-page>
<exception-type>java.lang.Throwable</exception-type>
<location>/error</location>
</error-page>
(or)
<error-page>
<exception-type>java.lang.Exception</exception-type>
<location>/error</location>
</error-page>
在web.xml文件中

然后我在方法级别使用@RequestMapping(“/ error”)编写了Controller类,但这种情况不起作用。

情景2)

与上面的web.xml文件相同,我将Servlet类编写为

@WebServlet(value = {"/error"},asyncSupported = true)
public class ExceptionHandling extends VaadinServlet{
@Override
protected VaadinServletService getService() {
    System.out.println("First if i display the sout message then i can  Navigate to the Error Page....");
    return super.getService();
}
}

但这也没有奏效。

情景3)

与上面的web.xml文件相同,我通过扩展HTTPServlet编写了Servlet类,但仍然无法显示sout消息。

场景4) 我试过Spring @ControllerAdvice和@Exception处理程序Annotation仍然无法显示错误页面

主要要求:

我需要在Web.xml文件中配置Exceptions,这样当我们在服务器控制台中获得任何异常时,它应该访问web.xml文件并导航到错误页面。

请您建议我完成这项要求,因为我过去2天一直在处理此要求。

提前致谢。

1 个答案:

答案 0 :(得分:0)

Vaadin 7允许您创建额外的错误处理程序。因此,如果在UI上出现任何错误/异常,Vaadin会调用ErrorHandler。如果您的想法在出现任何错误时重定向到错误页面,您可以执行下一步:

        UI.getCurrent().setErrorHandler(new ErrorHandler() {

        @Override
        public void error(com.vaadin.server.ErrorEvent event) {
            Page.getCurrent().setLocation("error");
            // Do the default error handling (optional)
            DefaultErrorHandler.doDefault(event);
        }

    });

此外,您可以使用任何其他错误处理程序方法扩展它。