gpt4 book ai didi

java - 如何在 JSP 上显示 RuntimeException

转载 作者:行者123 更新时间:2023-12-01 20:25:51 25 4
gpt4 key购买 nike

我抛出一个RuntimeException带有一条消息,我想在 JSP 上显示它

.....
String ip = getClientIP();
if (loginAttemptService.isBlocked(ip)) {
throw new RuntimeException("blocked");
}
.....

我试过<c:out value="${RuntimeException}"/> ,但这是一个错误的做法。如何显示该消息?

最佳答案

您可以通过不同的方式来做到这一点。正如我假设您的要求一样,您希望在 jsp 页面中将异常消息显示为验证错误。在这种情况下,我不想抛出 RuntimeException,而是将错误消息绑定(bind)到您调用的 HttpServlet 中的 HttpServletRequest 对象。处理。

然后它将能够从您的 jsp 访问该消息并可以按照您的意愿显示 -

在您的 Servlet 中

String ip = getClientIP();
if (loginAttemptService.isBlocked(ip)) {
request.setAttribute("error", "blocked");
}

现在在你的jsp中,只需执行以下操作

<c:if test=${error not empty}/>
<c:out value="${error}"/>
</C:if>

关于java - 如何在 JSP 上显示 RuntimeException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43889217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com