客户端有 DWR 异常处理的文档:
http://directwebremoting.org/dwr/documentation/browser/errors.html
但我正在寻找 DWR 服务器端异常处理的文档。基本上我遇到的问题是:详细错误(堆栈跟踪)返回到客户端,暴露 Web 应用程序详细信息。需要确保没有堆栈跟踪返回给客户端。
DWR 版本:3.0
有关 DWR 的服务器端异常处理的任何指针?谢谢。
客户端有 DWR 异常处理的文档:
http://directwebremoting.org/dwr/documentation/browser/errors.html
但我正在寻找 DWR 服务器端异常处理的文档。基本上我遇到的问题是:详细错误(堆栈跟踪)返回到客户端,暴露 Web 应用程序详细信息。需要确保没有堆栈跟踪返回给客户端。
DWR 版本:3.0
有关 DWR 的服务器端异常处理的任何指针?谢谢。
在这种情况下,我会用 try/catch 块包装异常。问题是:你应该在哪里做?
嗯,DWR 有一个过滤器机制,它很像 Java Servlet API 中的过滤器。
你可以这样写:
public class ExceptionFilter implements org.directwebremoting.AjaxFilter {
public Object doFilter(Object obj, Method method, Object[] params, AjaxFilterChain chain) throws Exception {
Object res;
try{
res = chain.doFilter(obj, method, params);
} catch(Exception e){
// throw your Exception with no "extra" data
throw new RuntimeException();
}
return res;
}
}
您可能需要在 dwr.xml 文件中进行一些配置(我留给您阅读:http ://directwebremoting.org/dwr/documentation/server/configuration/dwrxml/filters.html )
(编辑1)更多解释:
它的作用是拦截 DWR 远程调用并将调用转发到执行链。我添加到该调用(chain.doFilter)的是一个 try/catch 块;如果您的代码应该抛出任何异常,它将最终出现在 catch 块中,然后由您决定下一步该做什么。
我希望这能帮到您 :]