Tomcat中的错误页面被其他错误页面替换

时间:2018-04-12 17:54:33

标签: tomcat tomcat7

我在web.xml中设置了以下内容:

best_params_ = {dict} {'n_estimators': 310, 'min_weight_fraction_leaf': 0.0, 'min_samples_split': 12, 'min_samples_leaf': 5, 'max_features': 'auto', 'max_depth': 14, 'criterion': 'entropy'}
best_score_ = {float64} 0.4302884321273102
best_estimator on test set: 0.45628479220654583

这工作正常,我得到了我期待的错误页面。但是,在应用程序代码的某些位置,他们已经定义了自己的状态模板,该模板显示在这些特定的URL / API

我对这些自定义模板的最大问题是它们显示的是堆栈跟踪和应用程序版本,这显然存在安全风险。

所以我的问题是,如果有可能让tomcat覆盖所有错误页面并显示通用错误页面吗?

1 个答案:

答案 0 :(得分:0)

您可以创建someOtherError.jsp页面。 在web.xml中创建为全能的

<word>

添加包含代码以处理特定错误。

atom