当 运行 一个 .jsp 文件时,eclipse 停止响应

eclipse stops responding while running a .jsp file

我已经在 Eclipse 中创建了一个基本的动态 Web 项目。 我的 jsp 文件包含以下代码

<html>
<head>
<title>Insert title here</title>
</head>
<body>
   this is the sum of 5 and 3 <%com.testing.SumOfNumbers.addTwoNumbers(3,5); %>
</body>
</html>

在包“com.testing”中,我使用 addTwoNumbers 方法创建了 SumOfNumbers class。

package com.testing;

public class SumOfNumbers {
        public static int addTwoNumbers(int a,int b)
        {
            return a+b;
        }
}

我已经下载了 tomcat v10.0 服务器。 我尝试了几次但结果相同。我不知道问题出在哪里,是 tomcat 服务器还是 eclipse 错误?

提前致谢。

这不太可能是您的代码,尽管您使用的是 scriptlet 而不是表达式,因此总和不会像您预期的那样出现在输出中。

https://wiki.eclipse.org/How_to_report_a_deadlock 包含有关如何获取堆栈转储以查看发生了什么的说明。