我使用py4j创建了一个应用程序,该应用程序使得可以使用Java应用程序将python中的数据保存到SQL数据库中,当我将JVM作为应用程序运行时,一切工作都很好,它实际上保存了数据。但是当我在服务器上运行代码时,它给了我一个例外。因此,我认为我的服务器(Wildfly)和Py4j使用的是同一端口,因此我按照Turotial建议更改了默认的py4j端口,这就是Python方面修改后的样子:

from py4j.java_gateway import JavaGateway, GatewayParameters
gateway = JavaGateway(GatewayParameters(port=25335))
testBD = gateway.entry_point
DBin = gateway.jvm.com.packtpub.wflydevelopment.ch.Application(10,3) #calling constructor
testBD.create(DBin)


但我仍然有一个例外:

    Traceback (most recent call last):
File "C:\Users\user\Desktop\test.py", line 4, in
DBin = gateway.jvm.com.packtpub.wflydevelopment.ch.Application(10,3)
File "C:\Users\user\AppData\Local\Programs\Python\Python35-32\lib\site-packages\py4j-0.9-py3.5.egg\py4j\java_gateway.py", line 1185, in getattr
answer = self._gateway_client.send_command(
AttributeError: 'GatewayParameters' object has no attribute 'send_command'


任何建议将不胜感激。

最佳答案

我在https://github.com/bartdag/py4j/issues/180的问题上从bartdag那里得到了答案,他指出将GatewayParameter实例指定给参数“ gateway_parameters”是可行的。

# This produces the error
gateway = JavaGateway(GatewayParameters(address='192.168.99.100', port=25333))


但是添加参数名称可以使其工作:

# This solves it the error
gateway = JavaGateway(gateway_parameters=GatewayParameters(address='192.168.99.100', port=25333))

10-04 11:11