黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Spring JAXB

spring jaxb

 

jaxb是 用于xml綁定的java體系結構的首字母縮寫。它允許java開發(fā)人員將java類映射為xml表示形式。 jaxb可用于將java對象編組為xml,反之亦然。

它是sun提供的oxm(對象xml映射)或o/m框架。

jaxb的優(yōu)勢無需創(chuàng)建或使用sax或dom解析器,也無需編寫回調(diào)方法。

 

spring和jaxb集成的示例(將java對象編組為xml)

您需要為創(chuàng)建以下文件使用帶有jaxb的spring將java對象編組為xml:

  • employee.java
  • applicationcontext.xml
  • client.java

 

必需的jar文件

要運行此示例,您需要加載:

  • spring core jar文件
  • spring web jar文件

 

下載spring的所有jar文件,包括core,web,aop,mvc,j2ee,remoting ,oxm,jdbc,orm等。

employee.java

如果定義了三個屬性id,名稱和薪水。我們在此類中使用了以下注釋:

  • @xmlrootelement 它指定xml文件的根元素。
  • @xmlattribute 它指定屬性的屬性。
  • @xmlelement 它指定元素。
package com.yapf;
import javax.xml.bind.annotation.xmlattribute;
import javax.xml.bind.annotation.xmlelement;
import javax.xml.bind.annotation.xmlrootelement;
@xmlrootelement(name="employee")
public class employee {
private int id;
private string name;
private float salary;
@xmlattribute(name="id")
public int getid() {
  return id;
}
public void setid(int id) {
  this.id = id;
}
@xmlelement(name="name")
public string getname() {
  return name;
}
public void setname(string name) {
  this.name = name;
}
@xmlelement(name="salary")
public float getsalary() {
  return salary;
}
public void setsalary(float salary) {
  this.salary = salary;
}
}

applicationcontext.xml

它定義了一個bean jaxbmarshallerbean,其中employee類與oxm框架綁定。

<?xml version="1.0" encoding="utf-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
  xmlns:oxm="http://www.springframework.org/schema/oxm"
  xsi:schemalocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
    http://www.springframework.org/schema/oxm
      http://www.springframework.org/schema/oxm/spring-oxm-3.0.xsd">
      
      <oxm:jaxb2-marshaller id="jaxbmarshallerbean">
        <oxm:class-to-be-bound name="com.yapf.employee"/>
      </oxm:jaxb2-marshaller>
</beans>

client.java

它從applicationcontext.xml文件獲取marshaller的實例并調(diào)用marshal方法。

package com.yapf;
import java.io.filewriter;
import java.io.ioexception;
import javax.xml.transform.stream.streamresult;
import org.springframework.context.applicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;
import org.springframework.oxm.marshaller;
public class client{
 public static void main(string[] args)throws ioexception{
  applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml");
  marshaller marshaller = (marshaller)context.getbean("jaxbmarshallerbean");
    
  employee employee=new employee();
  employee.setid(101);
  employee.setname("sonoo jaiswal");
  employee.setsalary(100000);
    
  marshaller.marshal(employee, new streamresult(new filewriter("employee.xml")));
  
  system.out.println("xml created sucessfully");
 }
}

 

示例的輸出

employee.xml

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<employee id="101">
<name>sonoo jaiswal</name>
<salary>100000.0</salary>
</employee>

下一節(jié):spring中發(fā)送郵件的示例

spring 教程

相關文章