codeigniter 中的 PHP 和 Java 集成
我有一个基于 PHP 5 的网站,我需要将其与我创建的一系列 Java 类集成。基本上,我创建了一个 Web 服务来将 xml 发布到文件中,一旦进入该文件,我就会解析 xml 并想要调用 java 文件中的方法。
我不知道如何从 PHP 调用 java 函数。我研究过 PHP/Java 桥接器,但没有任何内容清楚地描述如何设置它。
任何帮助将不胜感激,
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Thrift、Google Protocol Buffers 或 Avro 到生成接口并在之间传递消息两种语言。这类似于 Facebook 在 PHP 和其他代码之间进行通信的做法。
以 Google proto 缓冲区为例,您将创建一个定义某些结构的 .proto 文件。然后,您在该 .proto 文件上运行 proto 编译器,它将生成相应的 PHP 和 Java 类,这些类可以通过某种中间件桥在两种语言之间传递。
Avro 和 Thrift 都提供了创建可以相互通信的客户端和服务器的方法,而我相信您只能依靠自己的原始缓冲区。
以下是在 PHP 中设置 Thrift 客户端的教程: http ://chanian.com/2010/05/13/thrift-tutorial-a-php-client/
当然,最好的想法是使用运行于ON JVM 然后您将可以直接访问所有 Java 库。您将能够调用Java对象,就像它们是普通的旧PHP对象一样。 JVM 托管的动态语言也变得非常快,尤其是使用 JDK 7。 Quercus(运行的 PHP 实现)在 JVM 上)实际上已被证明更快 (快 4 倍!) 比主流 PHP 解释器快。
另外,如果您在 JVM 上运行 PHP,那么您可以生成线程并排队后台工作...以及您将能够访问的所有其他新库...切换到 Quercus 是一个巨大的胜利。
You can use something like Thrift, Google Protocol Buffers or Avro to generate an interface and pass messages between the two languages. This is similar to what Facebook does to communicate between their PHP and other code.
Taking Google proto buffers as an example, you'll create a .proto file that defines some structure. You then run the proto compiler on that .proto file and it will generate corresponding PHP and Java classes which can be passed between the two languages over some middleware bridge.
Avro and Thrift both come with ways to create clients and servers that can talk to one another, where as I believe you are on your own with proto buffers.
Here is a tutorial on setting up a Thrift client in PHP: http://chanian.com/2010/05/13/thrift-tutorial-a-php-client/
Of coures the best idea is to go with a PHP implementation that runs ON the JVM and then you will have direct access to all Java libraries. You will be able to call Java objects like they are plain old PHP objects. JVM hosted dynamic languages are also getting very fast, especially w/ JDK 7. Quercus (an implementation of PHP that runs on the JVM) has actually been shown to be faster (4x faster!) than the mainstream PHP interpreter.
Also, if you are running PHP on the JVM then you can spawn threads and queue up background work... and all the other new libraries you'll be able to access... it is a huge win to switch to Quercus.
您应该考虑 php-java-bridge。我过去在一个带有 php 前端和 java 后端的项目中使用过它。
引用他们的网站:
编辑:我在另一个SO回答缺点一个>
You should consider the php-java-bridge. I have used it in the past on a project with a php front end and a java backend.
Quoting from their website:
Edit: I explained the disadvantages of using Quercus in another SO answer
我不确定代码点火器的结构如何执行其代码,但我刚刚发现了与此问题类似的其他问题: 从网站上的 PHP 脚本运行 Java 类文件
I'm not sure how code igniter is structured executes its code, but i just found this other question similar to this question: Run Java class file from PHP script on a website