search
HomeWeb Front-endJS TutorialImplementation steps of using oxm to map xml

This time I will bring you the implementation steps of using oxm to map xml. What are the precautions for using oxm to map xml. The following is a practical case, let's take a look.

Understanding XML parsing technology

XML related concepts

(1) DTD: XML syntax rules are the verification mechanism of XML files. You can compare XML documents and DTD files to see whether the document conforms to the specifications and whether the elements and tags are used correctly.

(2) XML is the basis of SOA.

XML processing technology

(1) In order to use XML, we need to access data through an XML processor or XML API. Currently, JAXP provides two methods for processing XML: DOM and SAX.

①DOM: DOM accesses the data and structure in the XML document through programming, based on the tree structure of the XML document in memory. The disadvantage is that loading the entire XML document into memory requires a lot of overhead.

②SAX: It is event-driven and uses one segment of parsing to solve the problem of DOM occupying large memory. However, its disadvantage is that it cannot access documents randomly.

(2) In order to solve the problems of DOM and SAX, a stream-based StreamAPI for XML (StAX for short) appeared. It has been added to JAXP1.4 of JDK6. StAX is also event-driven.

(3) DOM, SAX and StAX all process XML based on the document structure, but many applications only focus on the document data itself, so XMLdata binding technology came into being.

Data binding: refers to the process of extracting data from storage media (XML documents and databases) and representing the data through programs, that is, binding the data to some kind of memory structure that the virtual machine can understand and operate.

XML binding frameworks: Castor, JAXB, JiBX, Quick, Zeus, etc.

XStream Overview

(1) XStream is a simple and easy-to-use open source framework for serializing Java objects into XML or deserializing XML into Java objects.

(2) XStream architecture composition:

Converters: When XStream encounters an object that needs to be converted, it delegates to the appropriate converter implementation.

IO (input/output): XStream is abstracted from the underlying XML data through HierarchicalStreamWriter and HierarchicalStreamReader, which are used for serialization and deserialization operations respectively.

Context: When XStream serializes and deserializes objects, it will create two classes, MarshallingContext and UnmarshallingContext, and the tower will process the data and delegate it to the appropriate converter.

Facade (unified entrance): Integrate the above three points together and open them to users with a unified interface.

Quick Start

(1) Create an XStream and specify the XML parser

XStreamxstream=newXStream(newDomDriver());

If you do not specify a parser, XStream will use the XPP (XMLPullParser) parser by default. XPP is a high-speed parser.

(2) Examples are as follows:

Use XStream alias

(1) In the above example, the full class name of the Java object corresponds to the root element of the XML file, and the attribute name corresponds to the node element of the XML file. However, in actual situations, both the Java object and the XML object may have already defined names. At this time, you need to use alias mapping.

XStream has three alias configurations:

Category name: Use alias(Stringname,Classtype).

Class member alias: use aliasField(Stringalias,ClassdefinedIn,StringfieldName).

Class members are used as attribute aliases: use aliasAttribute(ClassdefinedIn,StringattributeName,Stringalias). It is meaningless to name them alone. They must also be applied to a certain class through useAttributeFor(ClassdefinedIn,StringfieldName).

XStream Converter

During the development process, sometimes you need to convert some custom types. Just implement the Converter interface and call the registerConverter() method of XStream to register the converter.

XStream Annotations

XStreamxstream=newXStream(newDomDriver());

There are 2 ways to load objects:

①Method 1:

xstream.processAnnotations(AAA.class);

xstream.processAnnotations(BBB.class);

②Method 2:

xstream.autodetectAnnotations(true);//Automatically load annotation beans, and also cache the annotated objects

Streaming objects

(1) XStream provides alternative implementations for ObjectInputStream and ObjectOutputStream, allowing XML serialization or deserialization operations in the form of object streams. The previous one is the XML read by the DOM-based XML parser. Here we should obviously use the stream method for parsing.

The difference between using PrettyWriter and CompactWriter is that PrettyWriter will format the generated XML, while CompactWriter will compress the generated XML.

Persistence API

(1) XStream provides a simple way to persist objects in a collection into files, such as: XmlArrayList, XmlSet, XmlMap, etc.

(2) Before creating a collection, you also need to specify a persistence strategy PersistenceStrategy.

Processing JSON

(1) XML has an unshakable position in WebService, but in most web applications, lightweight JSON is still used as the data exchange format.

(2) XStream provides JettisonMappedXmlDriver and JsonHierarchicalStreamDriver to complete the conversion of java objects and json.

(3) The difference between JettisonMappedXmlDriver and JsonHierarchicalStreamDriver:

①JettisonMappedXmlDriver generates compressed JSON, while JsonHierarchicalStreamDriver generates formatted JSON.

②To convert JSON to an object, you can only use JettisonMappedXmlDriver.

Integration with SpringOXM

Overview of SpringOXM

SpringOXM has done a great job on the mainstream O/XMapping framework A unified abstraction and encapsulation, Marshaller and Unmarshaller are the two core interfaces of SpringOXM. Marshaller is used to convert objects into XML, and Unmarshaller is used to convert XML into objects.

summary

(1) XML data binding of java applications can be summarized into 2 methods:

Generate Java language code (such as JAXB, XMLBeans, Castor) based on XML documents.

Use some form of mapping binding method, which is to set how Java classes are associated with XML (such as XStream, Castor, JiBX).

(2) 2 ways to compare:

With a stable document structure defined by a Schema or DTD that is suitable for the application's needs, a code generation approach may be the best choice.

If you are using an existing Java class, or if you want to use a structure of the class that reflects the application's usage of the data, rather than an XML structure, the mapping method is the best choice.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Swiper implements mobile advertising image carousel

How vue swiper implements sidebar menu

The above is the detailed content of Implementation steps of using oxm to map xml. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

Understanding the JavaScript Engine: Implementation DetailsUnderstanding the JavaScript Engine: Implementation DetailsApr 17, 2025 am 12:05 AM

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python vs. JavaScript: The Learning Curve and Ease of UsePython vs. JavaScript: The Learning Curve and Ease of UseApr 16, 2025 am 12:12 AM

Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

Python vs. JavaScript: Community, Libraries, and ResourcesPython vs. JavaScript: Community, Libraries, and ResourcesApr 15, 2025 am 12:16 AM

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

From C/C   to JavaScript: How It All WorksFrom C/C to JavaScript: How It All WorksApr 14, 2025 am 12:05 AM

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

JavaScript Engines: Comparing ImplementationsJavaScript Engines: Comparing ImplementationsApr 13, 2025 am 12:05 AM

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

Beyond the Browser: JavaScript in the Real WorldBeyond the Browser: JavaScript in the Real WorldApr 12, 2025 am 12:06 AM

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.