我可以在 JBoss AS 的 JVM 中运行 Main 类吗?
我正在尝试在主类中使用 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 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.