我正在使用py4j从我的python代码调用Java方法。当我在eclipse上启动java网关并使用python代码调用java方法时,我得到了适当的响应。但是当我在tomcat上部署与war文件相同的java程序,然后使用python代码调用tomcat上部署的java方法时,会出现以下错误。
Java代码:
package testjav;
import py4j.GatewayServer;
public class Helloworld {
public String sayhello() {
System.out.println("Hi there");
return "hi";
}
public static void main(String[] args) {
GatewayServer gatewayServer = new GatewayServer(new Helloworld());
gatewayServer.start();
System.out.println("Gateway Server Started");
}
}
Python代码:
from py4j.java_gateway import JavaGateway, GatewayParameters
gateway = JavaGateway(gateway_parameters=GatewayParameters(port=8080))
out = gateway.entry_point.sayhello()
print(out)
Tomcat出错:
Python上的错误:
Traceback (most recent call last):
File "C:\Users\******\Documents\*****\helloworld\tasksHello\tasks.py", line 24, in <module>
out = gateway.entry_point.sayhello()
File "C:\Users\******\AppData\Local\Continuum\anaconda3\lib\site-packages\py4j\java_gateway.py", line 1160, in __call__
answer, self.gateway_client, self.target_id, self.name)
File "C:\Users\*******\AppData\Local\Continuum\anaconda3\lib\site-packages\py4j\protocol.py", line 318, in get_return_value
value = OUTPUT_CONVERTER[type](answer[2:], gateway_client)
KeyError: 'T'
我通过查看py4j模块代码检查了这个答案变量。 在jvm运行的情况下,它返回:yshi,预期为hi输出,ys由py4j使用。但是在tomcat answer ='HTTP / 1.1'的情况下。我不明白为什么会这样。请指导我。