从 Php 调用 Jar(如果同时发出多个请求怎么办?)
我正在通过以下方式调用我的 php 服务器上的 Jar 文件
exec('java -jar /pat/to/file.jar', $output);
,但我想知道,如果对运行 jar 文件的 php 函数发出两个后续请求,第二个请求是否能够到达该 jar 文件?或者是否必须等待,因为 jar 文件已在使用中?
提前致谢。
I am calling a Jar file on my php server via
exec('java -jar /pat/to/file.jar', $output);
But i am wondering, If two consequent requests made to the php function that runs the jar file, would the second request be able to reach the jar file? Or would it have to wait because the jar file is already in use?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我过去用过这个,它似乎工作得很好: http://php -java-bridge.sourceforge.net/doc/how_it_works.php
I have used this in the past and it seems to work well: http://php-java-bridge.sourceforge.net/doc/how_it_works.php