您好!
目前需要对异常进行处理显示,大神有没有好的解决方案
10 回复
@Rekoe error只能用一个吗
一个跟多个有什么影响?
来自炫酷的 NutzCN
@wendal 我的意思是能这样吗,配多个?
@qq_a1b6f073 不能,但你可以做个代理嘛
来自炫酷的 NutzCN
public class MessageExecutorInterceptor implements MethodInterceptor {
private static final Log log = Logs.get();
public void filter(InterceptorChain chain) throws Throwable {
Stopwatch sw = Stopwatch.begin();
try {
chain.doChain();
} catch (ReloadException e) {
/** 数据库执行异常会提示用户重新登陆 */
chain.setReturnValue(new View()...);
} finally {
sw.stop();
if (log.isDebugEnabled()) {
log.debugf("%sms", sw.getDuration());
}
}
}
}
添加回复
请先登陆