intellij中的Maven项目没有显示运行时错误

时间:2017-11-12 15:39:54

标签: java maven intellij-idea compiler-errors runtime

我使用的是Intellij IDEA Community Edition 2017.2.5。我正在使用maven作为数据包管理器编写一个spark应用程序。我的问题是运行时错误没有显示出来。

例如。 假设输入的网址为http://localhost:4567/query?type=imnrs

如果我有代码中的某些地方:

request.queryParams("type1"); // tried to get type parameter but a typo occured

此处,url中不存在type1参数。因此,运行代码时必须显示错误。但是错误没有显示出来。所以,我必须在每一行打印才能找到错误。

编译错误显示得非常好。语法错误也会突出显示。

显示与记录器相关的警告:

log4j:WARN No appenders could be found for logger (spark.staticfiles.StaticFilesConfiguration).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

这是不显示错误的原因吗?

我也尝试从终端编译项目并运行。运行时错误也不会以这种方式显示。

我使用Run窗口。我也试过看事件窗口。我也尝试使缓存无效。但它也没有用。

我已经用谷歌搜索找到了答案,但没有成功。

0 个答案:

没有答案