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.
我在两台 PC 上有两个应用程序(java)和一个移动应用程序(Android)
我的问题是不同应用程序与数据库之间的交互: - PC 和 PC 之间 - PC 和移动设备
PC <---------> BD -------------> 移动
我使用什么数据库在两者之间连接和传输数据。这是远程通信。 PC <-------------------------> 基础 <------------------> 手机
您使用两台不同的电脑有什么具体原因吗?假设您有两个应用程序,您可以将它们部署在一台 PC 中,并在同一台 PC 中拥有数据库。
应用程序的设计应该是这样的。1) 开发一个基于 REST/SOAP 的 Web 服务应用程序,它与 DB 对话。2) 在应用程序服务器中部署此应用程序。2) 在您的 android 应用程序用户基于 REST/SOAP 的 Web 服务客户端中与步骤 2 中托管的 Web 服务进行对话。