将我的 Java 应用程序与 Moodle 集成
我有一个基于java的应用程序来操作mysql数据库。我想将此特定应用程序与 Moodle 安装集成。请让我知道程序。我对 java 和 php 作为单独的实体很有信心。但问题是如何将两者结合起来?
I have a java based application that manipulates a mysql database. I would like to integrate this particular application with an installation of moodle. Kindly let me know the procedure. I am kind ah confident with java and php as individual entities. But the question is how to integrate both?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最简单的有效方法是在 java 代码中运行套接字服务器,并使用客户端套接字从 PHP 发送请求(例如 pjb 为您实现了大部分繁重的工作)。或者,您可以通过容器将 Java 作为 HTTP 服务公开(例如使用 SOAP 或 REST)并从 PHP 调用它。
Simlpest efficient approach would be run a socketserver in the java code and send requests from PHP using a client socket (e.g. pjb implements most of the heavy lifting for you) . Alternatively you could expose the Java via a container as an HTTP service (e.g. using SOAP or REST) and call that from PHP.
Thrift 同时支持 PHP 和 Java:
Thrift supports both PHP and Java: