当前位置: 首页 > article >正文

JAXB的XmlAttribute注解

  • JAXB的XmlAttribute注解,将一个JavaBean属性映射到一个XML属性。

例如,下面的Java代码,将属性currency映射到了XML的属性currency:

package com.thb;

import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;

@XmlRootElement
@XmlType(name = "", propOrder = {"value"})
public class Price {

    @XmlValue
    public String value;

    @XmlAttribute(name = "currency")
    public String currency;
}

生成的XML Schema:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xs:element name="price">
    <xs:complexType>
      <xs:simpleContent>
        <xs:extension base="xs:string">
          <xs:attribute name="currency" type="xs:string"/>
        </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
  </xs:element>
</xs:schema>
  • XmlAttribute的required属性指定被注解的属性是否必选。
    例如下面代码,Java属性currency用@XmlAttribute(name = "currency", required = true)注解,指明xml属性currency是必选的:
package com.thb;

import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;

@XmlRootElement
@XmlType(name = "", propOrder = {"value"})
public class Price {

    @XmlValue
    public String value;

    @XmlAttribute(name = "currency", required = true)
    public String currency;
}

生成的XML Schema,属性currency中出现了use="required"

 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">

  <xs:element name="price">
    <xs:complexType>
      <xs:simpleContent>
        <xs:extension base="xs:string">
          <xs:attribute name="currency" type="xs:string" use="required"/>
        </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
  </xs:element>
</xs:schema>

http://www.kler.cn/a/147770.html

相关文章:

  • SecureCRT汉化版
  • 概率论 期末 笔记
  • 串口通信控制LED灯
  • Golang学习历程【第三篇 基本数据类型类型转换】
  • 【恶意软件检测】一种基于API语义提取的Android恶意软件检测方法(期刊等级:CCF-B、Q2)
  • 云原生服务网格Istio实战
  • 【Python】Vscode解决Python中制表符和空格混用导致的缩进问题
  • 如何通过内网穿透实现公网远程ssh连接kali系统
  • 才聚免费为你招聘,用人单位看过来!
  • 011 OpenCV warpAffine
  • opencv-图像金字塔
  • dsp flash如何同时烧写boot和app
  • springboot实现验证码功能
  • 解决多选删除页面不同步问题
  • 如何使用 Java 在Excel中创建下拉列表
  • JDBC编程基础
  • 动态网页从数据库取信息,然后展示。
  • 【Unity入门】LayerMask小结
  • UniApp 组件 u-tabs 详细讲解
  • pandas教程:Introduction to scikit-learn scikit-learn简介
  • SparkSession介绍
  • Docker入门教程
  • java:/comp/env/jdbc/testDbJndi通过JAVA代码读取JNDI获取数据源
  • C++之哈希
  • 软件设计先进性之虚拟化技术的应用
  • 计算机网络(超详解!) 第一节计算机网络的性能指标