我可以在 JBoss AS 的 JVM 中运行 Main 类吗?

发布于 2024-12-27 06:46:15 字数 227 浏览 0 评论 0原文

我正在尝试在主类中使用 @Local (而不是 @Remote)测试 EJB,但我不知道如何(或是否)可以在 JBoss AS 运行的同一个 JVM 中运行 java 类。

使用@Remote它可以工作。
@Local 仅当我在 Servlet 中测试它时才有效(因为它与 JBoss 在同一 JVM 中运行)。

I'm trying to test an EJB with @Local (instead of @Remote) in a Main class, but I can't figure out how (or if) can I run a java class in the same JVM that JBoss AS runs.

With @Remote it works.
@Local works only if I test it in a Servlet (cuz it runs in the same JVM with JBoss).

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

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

发布评论

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

评论(1

苏辞 2025-01-03 06:46:15

将 main 方法所做的任何事情都保留到 Main 类的非静态方法中,然后在 main() 方法中创建 Main 的实例,并调用该方法(假设不使用参数)。然后启动 jmx 控制台,找到您的 EJB,并调用新的非静态方法。

为什么你想要做这一切是一个有趣的问题。

Stick whatever the main method does into a non static method on the Main class, then in the main() method create an instance of Main, and invoke the method (am assuming arguments are not used). Then start up the jmx console, find your EJB, and invoke the new non static method.

Why you would want to do all this is an interesting question.

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