有没有命令停止jsp文件的执行?

发布于 2024-11-01 07:38:04 字数 216 浏览 0 评论 0原文

我有一个包含大量 if 语句的 JSP 文件。

有没有办法按需停止执行文件?

例如:

我可以将:更改

if (x==y) {
...
} else {
...
}

为:

if (x==y) {
....
stopExecution();
}
....

I have a JSP file that contains lots of if statements.

Is there a way to stop execution of file on demand?

For example:

Can I change:

if (x==y) {
...
} else {
...
}

to:

if (x==y) {
....
stopExecution();
}
....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

空城旧梦 2024-11-08 07:38:04

正如您已经发现的,您可以 return; 来“停止”执行。
这是可行的,因为 Java 代码是从 JSP 生成的,

public void _jspService(HttpServletRequest request, HttpServletResponse response)
    throws java.io.IOException, ServletException {
    // ...
}

方法是入口点。如果您在该代码中编写return,则该方法将返回。您可以在 tomcat 的 $TOMCAT/work/Catalina 下查看生成的代码。

As you already found out, you can return; to "stop" execution.
This works because Java code is generated from the JSP with

public void _jspService(HttpServletRequest request, HttpServletResponse response)
    throws java.io.IOException, ServletException {
    // ...
}

method being the entry point. If you write a return in that code, the method will return. You can check out the generated code in tomcat under $TOMCAT/work/Catalina.

旧话新听 2024-11-08 07:38:04

您可以在 Java 中使用标签,例如:

 out: { 
       if( x == y) break out;
........................
       }

因此您可以在标签中放置很多 if,然后在括号内打破整个代码。

You could use labels within Java, like:

 out: { 
       if( x == y) break out;
........................
       }

So you can put a lot of if's in the label and then break out of the whole code inside the brackets.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文