在PHP中,当我们想要停止页面处理时,我们可以使用die()或exit()函数。如何在jsp中做同样的事情?
修改 如果用户正在访问禁止页面(即那些需要登录的页面或只能由白名单中的特定IP地址访问的页面),我将其用于重定向到其他页面。在PHP中,我这样做:
<?php
...
if($logged_in && $ip_isValid){
// display page
}else{
// redirect to other page
}
...
或者为了更容易阅读/编码/开发,我可以像这样使用PHP的die()
:
<?php
...
if(!$logged_in || !$ip_isValid){
// redirect to other page or do some processing
die();
}
// else is not needed anymore here
// normal page execution
...
因此,如果没有die()
的等价物,或者有更好的方法,请告诉我如何在JSP中实现相同的目标。