我正在使用Apache Axis实现WebService。此服务作为参数接收包含以下成员的 ParameterBean 类:
public class ParameterBean {
protected String userName = "";
protected String password = "";
protected int clientID = 0;
protected int orgID = 0;
protected HashMap<String, String> mainTable = new HashMap<String, String>();
}
加上传统的吸气剂和二传手。我已经实现了一个特殊的构造函数:
public ParameterBean(String userName, String password, int clientID, int orgID) {
this.userName = userName;
this.password = password;
this.clientID = clientID;
this.orgID = orgID;
}
Adittionaly,这个类有一些基本的方法,如:
public void addColumnToMainTable(String columnName, String columnValue) {
addColumnOnTable(mainTable, columnName, columnValue);
}
然而,当我运行java2wsdl和wsdl2java时;生成的 ParameterBean 源代码有很大不同。 addColumnToMainTable()方法已经消失,生成的构造函数就是这个(与原文不同):
public ParameterBean(
int clientID,
java.util.HashMap mainTable,
int orgID,
java.lang.String password,
java.lang.String userName) {
this.clientID = clientID;
this.mainTable = mainTable;
this.orgID = orgID;
this.password = password;
this.userName = userName;
}
我的build.xml:
<target name="generateWSDL" description="Generates wsdl files from the java service interfaces">
<mkdir dir="${wsdl.dir}"/>
<axis-java2wsdl classpathref="classpath"
output="${wsdl.dir}/ExampleWS.wsdl"
location="http://localhost:8080/axis/services/ExampleWS"
namespace="org.example.ws"
classname="org.example.ws.ExampleWS">
</axis-java2wsdl>
</target>
<target name="generateWSDD" description="Generates wsdd files from the wsdl files">
<mkdir dir="${wsdd.dir}"/>
<axis-wsdl2java
output="${wsdd.dir}"
deployscope="Application"
serverside="true"
url="${wsdl.dir}\ExampleWS.wsdl">
</axis-wsdl2java>
</target>
为什么生成代码的差异?我该如何解决?我正在使用Axis 1.4。感谢。
编辑:对我来说更重要的是:我应该使用哪个类(服务器端和客户端)?我的还是生成的?
答案 0 :(得分:0)
好吧,仔细阅读Axis documentation,生成的类会有所不同,因为WSDL不包含任何有关代码实现的信息,因此是默认构造函数,除了getter / setter之外没有其他方法。
对于客户端,我可以使用生成的类或原始类,两者都可以正常工作。