Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 JBOSS 应用程序服务器中有两个 EAR( EAR-1、EAR-2 )。在 EAR-2 中,我有一个无状态会话 bean:
TestTimerBean
在这个bean中,我有一个方法:
startTimer()
现在我想访问/调用这个方法:startTimer()从EAR-1。
有人可以建议我如何实现这一目标吗?
您必须做的第一步是查找 EJB。
在 JBoss 中,您可以使用以下方式访问:
context/Bean_Name/remote
其中 context 是您的耳朵名称,Bean_Name是远程接口。
Bean_Name
希望这对你有帮助