jfinal控制器报错后的异常信息都是找不到视图

发布于 2021-12-04 12:21:58 字数 2379 浏览 878 评论 1

@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情栀口红 2021-12-04 15:32:29

     日志没有配置好而已,你这样改源代码的结果,只会在控制台输出,不会输出到 log4j 配置的日志文件中去,非常不利于生产环境, e.printStackTrace() 几乎没有什么合适的使用场合,是学生时代用来看看控制台异常输出的。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文