Jaxb的有点与用法(bean转xml的插件,简化webservice接口的开发工作量)

一、jaxb是什么

  JAXB是Java Architecture for XML Binding的缩写。可以将一个Java对象转变成为XML格式,反之亦然。
     我们把对象与关系数据库之间的映射称为ORM,其实也可以把对象与XML之间的映射称为OXM(Object XML Mapping)。原来JAXB是Java EE的一部分,在JDK1.6中,SUN将其放到了Java SE中,这也是SUN的一贯做法。JDK1.6中自带的这个JAXB版本是2.0,比起1.0(JSR 31)来,JAXB2(JSR 222)用JDK5的新特性Annotation来标识要作绑定的类和属性等,这就极大简化了开发的工作量。

二、jaxb应用模式

  在JAVA EE 5\6中,jaxb可以很方便的与jax-rs、jax-ws集成,极大的简化了web service接口的开发工作量

三、jaxb代码举例

  第一步:需要引入javax.xml.bind.jar
  第二步:编写java bean;

package com.mkyong.core; import javax.xml.bind.annotation.XmlAttribute;import javax.xml.bind.annotation.XmlElement;import javax.xml.bind.annotation.XmlRootElement; @XmlRootElementpublic class Customer {  String name; int age; int id;  public String getName() {  return name; }  @XmlElement public void setName(String name) {  this.name = name; }  public int getAge() {  return age; }  @XmlElement public void setAge(int age) {  this.age = age; }  public int getId() {  return id; }  @XmlAttribute public void setId(int id) {  this.id = id; } }

   第三步:main方法把java bean转化为xml字符串

package com.mkyong.core; import java.io.File;import javax.xml.bind.JAXBContext;import javax.xml.bind.JAXBException;import javax.xml.bind.Marshaller; public class JAXBExample { public static void main(String[] args) {    Customer customer = new Customer();   customer.setId(100);   customer.setName("mkyong");   customer.setAge(29);    try {   File file = new File("C:\\file.xml");  JAXBContext jaxbContext = JAXBContext.newInstance(Customer.class);  Marshaller jaxbMarshaller = jaxbContext.createMarshaller();   // output pretty printed  jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);   jaxbMarshaller.marshal(customer, file);  jaxbMarshaller.marshal(customer, System.out);        } catch (JAXBException e) {  e.printStackTrace();       }  }}

  下面是输出:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?><customer id="100">    <age>29</age>    <name>mkyong</name></customer>

四、jaxb开发常用

jdk提供了xjc工具可以使xsd自动生成相应的java bean,这大大提高了开发的效率。同时,我们也可以使用trang.jar把xml轻松转化为xsd。下面是使用的举例。

第一步:把数据库表映射为xml

<?xml version="1.0" encoding="UTF-8"?><User u_id="1" u_name="moto" u_email="[email protected]"  u_mood="今天放假了" u_state="online" u_mobile="12345678901"  u_hometown="山西" u_job="IT软件工程师" u_avatar="w34353453543r53" />

第二步:使用trang.jar转化为xsd文件。在命令行执行:

java -jar D:\lib\trang.jar user.xml user.xsd

下面,是生成的User.java。

//// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2011.11.13 at 01:26:07 ???? CST //package com.moto.server.bean;import java.math.BigInteger;import javax.xml.bind.annotation.XmlAccessType;import javax.xml.bind.annotation.XmlAccessorType;import javax.xml.bind.annotation.XmlAttribute;import javax.xml.bind.annotation.XmlRootElement;import javax.xml.bind.annotation.XmlSchemaType;import javax.xml.bind.annotation.XmlType;import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;/** * <p>Java class for anonymous complex type. *  * <p>The following schema fragment specifies the expected content contained within this class. *  * <pre> * <complexType> *   <complexContent> *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> *       <attribute name="u_avatar" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *       <attribute name="u_email" use="required" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" /> *       <attribute name="u_hometown" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *       <attribute name="u_id" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> *       <attribute name="u_job" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *       <attribute name="u_mobile" use="required" type="{http://www.w3.org/2001/XMLSchema}integer" /> *       <attribute name="u_mood" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *       <attribute name="u_name" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *       <attribute name="u_state" use="required" type="{http://www.w3.org/2001/XMLSchema}NCName" /> *     </restriction> *   </complexContent> * </complexType> * </pre> *  *  */@XmlAccessorType(XmlAccessType.FIELD)@XmlType(name = "")@XmlRootElement(name = "User")public class User {    @XmlAttribute(name = "u_avatar", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uAvatar;    @XmlAttribute(name = "u_email", required = true)    @XmlSchemaType(name = "anySimpleType")    protected String uEmail;    @XmlAttribute(name = "u_hometown", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uHometown;    @XmlAttribute(name = "u_id", required = true)    protected BigInteger uId;    @XmlAttribute(name = "u_job", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uJob;    @XmlAttribute(name = "u_mobile", required = true)    protected BigInteger uMobile;    @XmlAttribute(name = "u_mood", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uMood;    @XmlAttribute(name = "u_name", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uName;    @XmlAttribute(name = "u_state", required = true)    @XmlJavaTypeAdapter(CollapsedStringAdapter.class)    @XmlSchemaType(name = "NCName")    protected String uState;    /**     * Gets the value of the uAvatar property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUAvatar() {        return uAvatar;    }    /**     * Sets the value of the uAvatar property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUAvatar(String value) {        this.uAvatar = value;    }    /**     * Gets the value of the uEmail property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUEmail() {        return uEmail;    }    /**     * Sets the value of the uEmail property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUEmail(String value) {        this.uEmail = value;    }    /**     * Gets the value of the uHometown property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUHometown() {        return uHometown;    }    /**     * Sets the value of the uHometown property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUHometown(String value) {        this.uHometown = value;    }    /**     * Gets the value of the uId property.     *      * @return     *     possible object is     *     {@link BigInteger }     *          */    public BigInteger getUId() {        return uId;    }    /**     * Sets the value of the uId property.     *      * @param value     *     allowed object is     *     {@link BigInteger }     *          */    public void setUId(BigInteger value) {        this.uId = value;    }    /**     * Gets the value of the uJob property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUJob() {        return uJob;    }    /**     * Sets the value of the uJob property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUJob(String value) {        this.uJob = value;    }    /**     * Gets the value of the uMobile property.     *      * @return     *     possible object is     *     {@link BigInteger }     *          */    public BigInteger getUMobile() {        return uMobile;    }    /**     * Sets the value of the uMobile property.     *      * @param value     *     allowed object is     *     {@link BigInteger }     *          */    public void setUMobile(BigInteger value) {        this.uMobile = value;    }    /**     * Gets the value of the uMood property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUMood() {        return uMood;    }    /**     * Sets the value of the uMood property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUMood(String value) {        this.uMood = value;    }    /**     * Gets the value of the uName property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUName() {        return uName;    }    /**     * Sets the value of the uName property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUName(String value) {        this.uName = value;    }    /**     * Gets the value of the uState property.     *      * @return     *     possible object is     *     {@link String }     *          */    public String getUState() {        return uState;    }    /**     * Sets the value of the uState property.     *      * @param value     *     allowed object is     *     {@link String }     *          */    public void setUState(String value) {        this.uState = value;    }}

转载自:https://blog.csdn.net/hfrujhv/article/details/83788497

原文地址:https://www.cnblogs.com/yangjingkang/p/9967464.html

时间: 2024-10-11 10:46:34

Jaxb的有点与用法(bean转xml的插件,简化webservice接口的开发工作量)的相关文章

JAVA bean与XML互转---XStream

最近在项目中遇到了Java bean 和XML互转的需求, 本来准备循规蹈矩使用dom4j忽然想起来之前曾接触过的XStream, 一番研究豁然开朗,利器啊利器, 下来就XStream的一些用法与大家分享. XStream是大名鼎鼎的thought works下的一个开源项目, 主要功能是提供JAVA bean 和XML文本之间的转换,另外还提供JAVA bean和JSON之间的转换,这个不在本次讨论的范围内. XStream进行转换是非常简单的,对JAVA bean没有任何要求: 不要求对pr

JAVA bean与XML互转的利器---XStream

最近在项目中遇到了JAVA bean 和XML互转的需求, 本来准备循规蹈矩使用dom4j忽然想起来之前曾接触过的XStream, 一番研究豁然开朗,利器啊利器, 下来就XStream的一些用法与大家分享. XStream是大名鼎鼎的thought works下的一个开源项目, 主要功能是提供JAVA bean 和XML文本之间的转换,另外还提供JAVA bean和JSON之间的转换,这个不在本次讨论的范围内. XStream进行转换是非常简单的,对JAVA bean没有任何要求: 不要求对pr

XStream 用法详解 XML 转换为 java 实体类

XStream 用法详解 java 类与 XML 互换 现在 WEB数据交换的时代,传送XML目前是一个比较流行的方式,具有统一的规则约束,为实现后台接口提供了一个很方便的实现. 我编写了一个 接收XML并转换成所需要的Object类的 小例子,希望能够对做互联网数据传输.接口调用的朋友有所帮助. 首先要导入jar包xstream-1.4.3-sources.jar 和 xmlpull-1.1.3.1.jar 两个包: 其次是预备一个 XML 事例 <config> <span styl

框架 day36 Spring3 入门,DI依赖注入,装配bean基于xml/注解, 整合Junit4,配置约束自动提示

1 什么是spring 1.1官网 spring.io 1.2介绍 Spring的核心是控制反转(IoC)和面向切面(AOP). IoC(Inverse of Control 反转控制) AOP(Aspect Oriented Programming 面向切面编程为内核) 简单来说,Spring是一个分层的JavaSE/EE full-stack(一站式) 轻量级开源框架. *轻量级:依赖其他内容较小,使用资源消耗也少.对比:EJB 重量级 *分层:经典三层体系架构,spring 提供解决方案

Bean转XML

将实体类转为XML pom依赖 <dependency> <groupId>com.thoughtworks.xstream</groupId> <artifactId>xstream</artifactId> <version>1.4.10</version> </dependency> <dependency> <groupId>org.apache.commons</grou

unity编辑器xml数据库插件

unity编辑器xml数据库插件 程序和数据分离的意义我就不多说了,大家自己脑补或者百度.在使用unity开发时,数据的调试是非常频繁和重要的.我们可以制作一个简单的编辑器插件,将数据显示在Inspector面板上,并进行编辑操作.这样测试人员就可以非常方便的管理测试数据了. 需求很简单,具体的效果是,能读取资源内的类,将其属性显示在面板上,可以对此进行增删改查的操作.如下图所示(对象组,相当于数据库所有的表.对象,相当于表的所有记录). 当需要创建一条新记录的时候,先填上主键,然后点击创建按钮

跨平台支持的WebService接口Demo,利用xstream快速解析和生成xml文件

原文:跨平台支持的WebService接口Demo,利用xstream快速解析和生成xml文件 源代码下载地址:http://www.zuidaima.com/share/1591110000167936.htm 这个是我本人写的CXF的WebService的一个正在项目中使用的程序, 支持跨平台,经测试,java和C#客户端能正常使用,其中利用Xstream生成和解析xml,不需要修改对象;支持内部私有字段,直接根据生成java类生成xml,反过来根据xml生成java类. 运行说明: 部署到

MyBatis 逆向工程——根据数据表自动生成model、xml映射文件、mapper接口

MyBatis Generator(MBG)的使用 MBG可以根据数据表生成对应的model.xml映射文件.mapper接口,只是简单的生成,还需要根据需求修改. 1.下载jar包 https://github.com/mybatis/generator/releases 解压后有3个jar包,只使用一个: 2.新建一个新的java项目,导入mybatis.jar.mybatis-generator-core.jar.数据库驱动. 3.src下新建config.xml http://mybat

8、spring注解学习(bean的生命周期)——让Bean实现InitializingBean,DisposableBean这两个接口进而实现初始和销毁方法

1.创建Tiger类实现InitializingBean,DisposableBean接口,并通过@Component将该组件注入 @Component public class Tiger implements InitializingBean,DisposableBean{ public Tiger() { System.out.println("Tiger的构造方法执行了..."); } /** * 此方法就是在调用构造方法之后属性都赋完值就执行 */ @Override pub