快速业务通道

Java Web服务 - Axis2中的JAXB和JAX-WS - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-20
   public GetBookResponse getBook(GetBook req) {      BookInformation book = m_server.getBook(req.getIsbn());      GetBookResponse rsp = new GetBookResponse();      rsp.setGetBookReturn(book);      return rsp;    }    public GetBooksByTypeResponse getBooksByType(GetBooksByType req) {      GetBooksByTypeResponse rsp = new GetBooksByTypeResponse();      rsp.getGetBooksByTypeReturn().addAll(m_server.getBooksByType(req.getType()));      return rsp;    }    public GetTypesResponse getTypes(GetTypes req) {      GetTypesResponse rsp = new GetTypesResponse();      rsp.getGetTypesReturn().addAll(m_server.getTypes());      return rsp;    } }

“Java Web Services: Axis2 Data Binding” 并没有展示针对不同数据绑定的服务器接口代码,但是如果您比较 清单 3 和从上文下载的代码,就会发现清单 3 非常接近于 ADB 和 JiBX 封装器例子,同样,惟一的区别在于使用了 Java 5 的类型类别而没有使用数组。

Java Web服务 - Axis2中的JAXB和JAX-WS(4)

时间:2011-01-30 IBM Dennis Sosnoski

JAXB 数据模型类

清单 4 展示了通过运行 WSDL2Java 生成的 JAXB 数据模型类(生成的大多数注释已被删除,只留下少量注释作为例子)。生成的数据模型类对于客户机和服务器都是相同的,即使是由项目构建单独创建的。显示的类用于 清单 2 的客户机代码和 清单 3 的服务器代码中的 getBook 调用。每个类定义上的注释(用粗体显示)和大部分字段定义提供了配置信息,供 JAXB 用于控制对象与 XML 的转换。

清单 4. JAXB 数据模型类

@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = {    "isbn" }) @XmlRootElement(name = "getBook") public class GetBook {    @XmlElement(required = true)    protected String isbn;    /**     * Gets the value of the isbn property.     *     * @return     *   possible object is     *   {@link String }     *     */    public String getIsbn() {      return isbn;    }    /**     * Sets the value of the isbn property.     *     * @param value     *   allowed object is     *   {@link String }     *     */    public void setIsbn(String value) {      this.isbn = value;    } } @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "BookInformation", propOrder = {    "author",    "title" }) public class BookInformation {    protected List<String> author;    @XmlElement(required = true)    protected String title;    @XmlAttribute(required = true)    protected String type;    @XmlAttribute(required = true)    protected String isbn;    public List<String> getAuthor() {      if (author == null) {        author = new ArrayList<String>();      }      return this.author;    }    public String getTitle() {      return title;    }    public void setTitle(String value) {      this.title = value;    }    pu

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号