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.
我在同一台服务器上部署了两个spring项目,有什么方法可以将一个应用程序的 对象访问到另一个应用程序
你有很多选择。JMS 流行于在 Java 应用程序之间推送消息。您还可以为客户端/服务器通信创建一个 SOAP/REST Web 服务 API。
两者都可以与 Spring 集成。
你也可以做非 Spring 相关的事情,比如 RMI,但我认为使用你已经拥有的东西更容易。