Php/Java Integration

前端 未结 5 476
挽巷
挽巷 2020-12-11 21:13

Have you experience of integration of php and Java? I\'ve written a class in Java \"Hello\". Now I want to call its method from php when I create an instance of this class f

5条回答
  •  隐瞒了意图╮
    2020-12-11 21:27

    There are many ways few are:

    • PHP Java Bridge
    • Java Integration in PHP
    • Using web services to pass data in between like SOAP
    • Using simple HTTP data passage between Java and PHP see (facejar uses the same technique)

    • Client site script (AJAX)

    If you are after security, use option 1 otherwise I prefer using option 4 which is a bit faster when it comes to performance.

提交回复
热议问题