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.
您好,我正在开发一个使用 json 与 phpscript 通信来操作 mysql 数据库的 android 应用程序。有一个类称为“用户函数”:登录注销、创建用户、删除用户等...我可以使用 rmi 将这个函数导出到服务器,这样我可以让我的应用程序更轻便吗?所以我会有这个架构:
这是个好主意还是坏主意?谢谢
我的想法是,如果我想使用 RMI,我只需在服务器端有一个 java 应用程序来与 DB 交互,而不是引入另一个序列化过程(到 JSON)并在服务器上实现第二个 PHP API。