gpt4 book ai didi

jsp - 使用 scriplet 代码从 jsp 重定向

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

我的应用程序有一个 JSP,它使用 scriplet 代码根据某些条件重定向到页面。

但实际情况是,在重定向代码 response.redirect(..) 之后,下面的代码正在执行。我不想执行下面的代码或加载 JSP 页面,我只想立即重定向。请参阅下面的示例,请告诉我解决方案。

<html>
<body>
<%
boolean condition = true;
if(condition)
response.sendRedirect("http://www.google.co.in");
System.out.println("I don't want to execute this code, I just want to redirect after above line");
%>
</body>
</html>

最佳答案

return 语句可以在 sendRedirect 完成后立即使用。在这种情况下,下面的代码将不会被执行。

if(condition){
response.sendRedirect("http://www.google.co.in");
return;
}

关于jsp - 使用 scriplet 代码从 jsp 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8686877/

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