jfinal控制器报错后的异常信息都是找不到视图
@JFinal 你好,想跟你请教个问题:
如题,每次都跳转到com.jfinal.aop.Invocation
原代码是:
public void invoke() { if (index < inters.length) { inters[index++].intercept(this); } else if (index++ == inters.length) { // index++ ensure invoke action only one time try { // Invoke the action if (action != null) { returnValue = action.getMethod().invoke(target, args); } // Invoke the method else { // if (!Modifier.isAbstract(method.getModifiers())) // returnValue = methodProxy.invokeSuper(target, args); if (useInjectTarget) returnValue = methodProxy.invoke(target, args); else returnValue = methodProxy.invokeSuper(target, args); } } catch (InvocationTargetException e) { Throwable t = e.getTargetException(); throw t instanceof RuntimeException ? (RuntimeException)t : new RuntimeException(e); } catch (RuntimeException e) { throw e; } catch (Throwable t) { throw new RuntimeException(t); } } }
改为以下代码,就可以查看到sql语句报的异常了
public void invoke() { if (index < inters.length) { inters[index++].intercept(this); } else if (index++ == inters.length) { // index++ ensure invoke action only one time // Invoke the action if (action != null) { try { returnValue = action.getMethod().invoke(target, args); } catch (IllegalAccessException e) { e.printStackTrace(); } catch (IllegalArgumentException e) { e.printStackTrace(); } catch (InvocationTargetException e) { e.printStackTrace(); } } // Invoke the method else { // if (!Modifier.isAbstract(method.getModifiers())) // returnValue = methodProxy.invokeSuper(target, args); if (useInjectTarget) try { returnValue = methodProxy.invoke(target, args); } catch (Throwable e) { e.printStackTrace(); } else try { returnValue = methodProxy.invokeSuper(target, args); } catch (Throwable e) { e.printStackTrace(); } } } }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
日志没有配置好而已,你这样改源代码的结果,只会在控制台输出,不会输出到 log4j 配置的日志文件中去,非常不利于生产环境, e.printStackTrace() 几乎没有什么合适的使用场合,是学生时代用来看看控制台异常输出的。