PHPRPC for Java Spring的例子
1.需要在web.xml中配置
web.xml文件:
2. 配置spring
我的是配置文件在WEB-INF/config/phprpc-servlet-front-action.xml:
相关内容为:
第二步配置好后,在地址栏中键入"http://localhost:8080/项目名/phprpc/appservice.jspx"就得到类似下图的结果。如果现实,配置成功。
前两步成功后,我们看看该如何使用:
// 调用时的写法
PHPRPC_Client client = new PHPRPC_Client("http://localhost:8090/项目名称/phprpc/appservice.jspx");
ApplicationServer appServer = (ApplicationServer) client.useService(ApplicationServer.class);
appServer.register(username, password); //要调用的方法
和不用spring的写法一摸一样,只是路径是配出来的。
我亲自试了试,没有问题!!
大家如有问题,可以一起讨论一下