我正在使用axistools-maven-plugin
这是我的 xml 内容。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>axistools-maven-plugin</artifactId>
<version>1.4</version>
<configuration>
<urls>
<url>http://localhost:8080/link/to/webservice?wsdl</url>
</urls>
<packageSpace>my.package</packageSpace>
<serverSide>true</serverSide>
<outputDirectory>src/main/java</outputDirectory>
</configuration>
<executions>
<execution>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
我得到生成的输出为:
http://my_ip_address:8080/link/to/webservice
我希望生成的输出为:
http://localhost:8080/link/to/webservice
OR
http://127.0.0.1:8080/link/to/webservice
因为http://my_ip_address:8080/link/to/webservice(我认为)将尝试从网络获取连接。我想在本地连接。
请帮忙..
更新:
它适用于 Windows XP,但不适用于 Linux (CentOS)。很抱歉没有提到这一点。