Log In to start Learning

Login via

Post By Admin Last Updated At 2020-06-15
OXM in Spring
Spring and JAXB Integration

JAXB is an acronym for Java Architecture for XML Binding. It enables java engineers to delineate class to XML portrayal. JAXB can be utilized to marshal java objects into XML and the other way around.It is an OXM (Object XML Mapping) or O/M structure gave by Sun.

Preferred standpoint of JAXB No compelling reason to make or utilize a SAX or DOM parser and compose callback strategies.
  1. Employee.java
  2. applicationContext.xml
  3. Client.java
Required Jar files
  • Spring Core jar files
  • Spring Web jar files

JAVA Tutorial Video

[embed]https://www.youtube.com/watch?v=Mb8nG-NH6gg&t=2835s[/embed] Employee.java
  1. @XmlRootElement It specifies the root element for the xml file.
  2. @XmlAttribute It specifies attribute for the property.
  3. @XmlElement It specifies the element.
 package com.javaspot;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.xmlclass-to-be-bound name="com.javaspot.Employee"/>Client.javapackage com.javaspot;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 Madhu");employee.setSalary(100000);marshaller.marshal(employee, new StreamResult(new FileWriter("employee.xml")));System.out.println("XML Created Sucessfully");}}
Output
employee.xml
Sonoo Madhu100000.0Spring with Xstream Xstream is a library to serialize articles to xml and the other way around without necessity of any mapping document. Notice that castor requires a mapping record.XStreamMarshaller class gives office to marshal objects into xml and the other way around.
Spring with Castor:
By the assistance of Castor Marshaller class, we can marshal the java objects into xml and the other way around utilizing castor. It is the usage class for Marshaller and Unmarshaller interfaces. It doesn't require any further arrangement by default.
Spring and Castor Integration (Marshalling Java Object into XML)
  1. Employee.java
  2. applicationContext.xml
  3. mapping.xml
  4. Client.java
Required Jar files
To run this example, you need to load:
  • Spring Core jar files
  • Spring Web jar files
  • castor-1.3.jar
  • castor-1.3-core.jar
Spring and Struts 2 IntegrationSpring system gives a simple approach to deal with the reliance. It can be effectively coordinated with struts 2 system.The ContextLoaderListener class is utilized to impart spring application with struts 2. It must be indicated in the web.xml record. You have to take after strides:
  • Make struts2 application and include spring container records.
  • In web.xml record, characterize ContextLoaderListener class.
  • In struts.xml record, characterize bean name for the activity class.
  • In the activity class, characterize additional property e.g. message.
Spring and Struts 2 Integration
  1. index.jsp
  2. web.xml
  3. struts.xml
  4. applicationContext.xml
  5. Login.java
  6. welcome.jsp
  7. error.jsp
Get more tutorials from onlineitguru trainers after completion of java certification course