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.
我有两个应用程序。第一个调用app1 是一个JSF 1.2 应用程序。第二个称为 app2 是一个基本的 Servlet 应用程序。是否可以从 app2 访问 app1 中的特定托管会话 bean?两者都部署在同一台服务器上。
谢谢汤姆
一个建议是将您的 app1 bean 转换为 EJB3 bean,然后使用“本地”接口从 app2 访问它们(因为 app1 和 app2 在同一台服务器上)
更改很少(一些注释和接口)。当然,您的应用服务器需要符合 EJB3。