- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.<init>()
方法的一些代码示例,展示了XMLRoot.<init>()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLRoot.<init>()
方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.XMLRoot
类名称:XMLRoot
方法名:<init>
暂无
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
/**
* INTERNAL
* @since 2.5.0
*/
@Override
public XMLRoot createRoot() {
return new XMLRoot();
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
/**
* INTERNAL
* @since 2.5.0
*/
@Override
public XMLRoot createRoot() {
return new XMLRoot();
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
/**
* Convenience method that builds an XMLRoot wrapping a given object.
* The local name and uri are set using the given Node.
*/
protected XMLRoot buildXMLRoot(Node node, Object object) {
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setLocalName(node.getLocalName());
xmlRoot.setNamespaceURI(node.getNamespaceURI());
xmlRoot.setObject(object);
return xmlRoot;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
/**
* Convenience method that builds an XMLRoot wrapping a given object.
* The local name and uri are set using the given Node.
*/
protected XMLRoot buildXMLRoot(Node node, Object object) {
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setLocalName(node.getLocalName());
xmlRoot.setNamespaceURI(node.getNamespaceURI());
xmlRoot.setObject(object);
return xmlRoot;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public Object getObject() {
if(object == null) {
if(this.descriptor != null) {
object = this.descriptor.wrapObjectInXMLRoot(this.rootRecord, this.unmarshaller.isResultAlwaysXMLRoot());
} else if(documentBuilder != null) {
Node node = (Node)documentBuilder.getDocument().getDocumentElement();
XMLRoot root = new XMLRoot();
root.setLocalName(node.getLocalName());
root.setNamespaceURI(node.getNamespaceURI());
root.setObject(node);
object = root;
} else {
if(rootRecord != null) {
object = this.rootRecord.getCurrentObject();
}
}
}
return this.object;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
if(null != nestedConverter) {
objectValue = nestedConverter.convertObjectValueToDataValue(objectValue, session, marshaller);
}
if(objectValue instanceof JAXBElement) {
ClassDescriptor desc = session.getDescriptor(objectValue);
if(desc == null || objectValue instanceof WrappedValue){
JAXBElement element = (JAXBElement) objectValue;
Root root = new XMLRoot();
root.setLocalName(element.getName().getLocalPart());
root.setNamespaceURI(element.getName().getNamespaceURI());
root.setObject(element.getValue());
root.setDeclaredType(element.getDeclaredType());
root.setNil(element.isNil());
return root;
}
}
return objectValue;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy
@Override
public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
if(null != nestedConverter) {
objectValue = nestedConverter.convertObjectValueToDataValue(objectValue, session, marshaller);
}
if(objectValue instanceof JAXBElement) {
ClassDescriptor desc = session.getDescriptor(objectValue);
if(desc == null || objectValue instanceof WrappedValue){
JAXBElement element = (JAXBElement) objectValue;
Root root = new XMLRoot();
root.setLocalName(element.getName().getLocalPart());
root.setNamespaceURI(element.getName().getNamespaceURI());
root.setObject(element.getValue());
root.setDeclaredType(element.getDeclaredType());
root.setNil(element.isNil());
return root;
}
}
return objectValue;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public Object wrapObjectInXMLRoot(Object object, String elementNamespaceUri, String elementLocalName, String elementPrefix, String encoding, String version, boolean forceWrap) {
if (forceWrap || shouldWrapObject(object, elementNamespaceUri, elementLocalName, elementPrefix)) {
// if the DOMRecord element != descriptor's default
// root element, create an XMLRoot, populate and return it
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setLocalName(elementLocalName);
xmlRoot.setNamespaceURI(elementNamespaceUri);
xmlRoot.setObject(object);
xmlRoot.setEncoding(encoding);
xmlRoot.setVersion(version);
return xmlRoot;
}
return object;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
/**
* INTERNAL:
* Determines the appropriate object to return from the unmarshal
* call. The method will either return the object created in the
* xmlReader.parse() call or an instance of Root. An Root
* instance will be returned if the DOMRecord element being
* unmarshalled does not equal the descriptor's default root
* element.
*
* @param object
* @param elementNamespaceUri
* @param elementLocalName
* @param elementPrefix
* @return object
*/
public Object wrapObjectInXMLRoot(Object object, String elementNamespaceUri, String elementLocalName, String elementPrefix, boolean forceWrap, boolean isNamespaceAware, XMLUnmarshaller xmlUnmarshaller) {
if (forceWrap || shouldWrapObject(object, elementNamespaceUri, elementLocalName, elementPrefix, isNamespaceAware)) {
// if the DOMRecord element != descriptor's default
// root element, create an Root, populate and return it
Root xmlRoot = new XMLRoot();
xmlRoot.setLocalName(elementLocalName);
xmlRoot.setNamespaceURI(elementNamespaceUri);
xmlRoot.setObject(object);
setDeclaredTypeOnXMLRoot(xmlRoot, elementNamespaceUri, elementLocalName, isNamespaceAware, xmlUnmarshaller);
return xmlRoot;
}
return object;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
/**
* INTERNAL:
* Determines the appropriate object to return from the unmarshal
* call. The method will either return the object created in the
* xmlReader.parse() call or an instance of Root. An Root
* instance will be returned if the DOMRecord element being
* unmarshalled does not equal the descriptor's default root
* element.
*
* @param object
* @param elementNamespaceUri
* @param elementLocalName
* @param elementPrefix
* @return object
*/
public Object wrapObjectInXMLRoot(Object object, String elementNamespaceUri, String elementLocalName, String elementPrefix, boolean forceWrap, boolean isNamespaceAware, XMLUnmarshaller xmlUnmarshaller) {
if (forceWrap || shouldWrapObject(object, elementNamespaceUri, elementLocalName, elementPrefix, isNamespaceAware)) {
// if the DOMRecord element != descriptor's default
// root element, create an Root, populate and return it
Root xmlRoot = new XMLRoot();
xmlRoot.setLocalName(elementLocalName);
xmlRoot.setNamespaceURI(elementNamespaceUri);
xmlRoot.setObject(object);
setDeclaredTypeOnXMLRoot(xmlRoot, elementNamespaceUri, elementLocalName, isNamespaceAware, xmlUnmarshaller);
return xmlRoot;
}
return object;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
/**
* INTERNAL:
* @return
*/
public Object wrapObjectInXMLRoot(Object object, String elementNamespaceUri, String elementLocalName, String elementPrefix, String encoding, String version, boolean forceWrap, boolean isNamespaceAware, XMLUnmarshaller unmarshaller) {
if (forceWrap || shouldWrapObject(object, elementNamespaceUri, elementLocalName, elementPrefix, isNamespaceAware)) {
// if the DOMRecord element != descriptor's default
// root element, create an XMLRoot, populate and return it
Root xmlRoot = new XMLRoot();
xmlRoot.setLocalName(elementLocalName);
xmlRoot.setNamespaceURI(elementNamespaceUri);
xmlRoot.setObject(object);
xmlRoot.setEncoding(encoding);
xmlRoot.setVersion(version);
setDeclaredTypeOnXMLRoot(xmlRoot, elementNamespaceUri, elementLocalName, isNamespaceAware, unmarshaller);
return xmlRoot;
}
return object;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
/**
* INTERNAL:
* @return
*/
public Object wrapObjectInXMLRoot(Object object, String elementNamespaceUri, String elementLocalName, String elementPrefix, String encoding, String version, boolean forceWrap, boolean isNamespaceAware, XMLUnmarshaller unmarshaller) {
if (forceWrap || shouldWrapObject(object, elementNamespaceUri, elementLocalName, elementPrefix, isNamespaceAware)) {
// if the DOMRecord element != descriptor's default
// root element, create an XMLRoot, populate and return it
Root xmlRoot = new XMLRoot();
xmlRoot.setLocalName(elementLocalName);
xmlRoot.setNamespaceURI(elementNamespaceUri);
xmlRoot.setObject(object);
xmlRoot.setEncoding(encoding);
xmlRoot.setVersion(version);
setDeclaredTypeOnXMLRoot(xmlRoot, elementNamespaceUri, elementLocalName, isNamespaceAware, unmarshaller);
return xmlRoot;
}
return object;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
protected void setOrAddAttributeValue(UnmarshalRecord unmarshalRecord, Object value, XPathFragment xPathFragment, Object collection){
if (!xmlAnyObjectMapping.usesXMLRoot()) {
unmarshalRecord.setAttributeValue(value, xmlAnyObjectMapping);
} else {
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setNamespaceURI(xPathFragment.getNamespaceURI());
xmlRoot.setSchemaType(unmarshalRecord.getTypeQName());
xmlRoot.setLocalName(xPathFragment.getLocalName());
xmlRoot.setObject(value);
unmarshalRecord.setAttributeValue(xmlRoot, xmlAnyObjectMapping);
}
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
protected void setOrAddAttributeValue(UnmarshalRecord unmarshalRecord, Object value, XPathFragment xPathFragment, Object collection){
if (!xmlAnyCollectionMapping.usesXMLRoot()) {
unmarshalRecord.addAttributeValue(this, value);
} else {
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setNamespaceURI(xPathFragment.getNamespaceURI());
xmlRoot.setSchemaType(unmarshalRecord.getTypeQName());
xmlRoot.setLocalName(xPathFragment.getLocalName());
xmlRoot.setObject(value);
unmarshalRecord.addAttributeValue(this, xmlRoot);
}
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
public Object convertDataValueToObjectValue(Object dataValue,
Session session) {
XMLRoot root = new XMLRoot();
root.setLocalName(this.rootFragment.getLocalName());
root.setNamespaceURI(this.rootFragment.getNamespaceURI());
if(mapping.isAbstractDirectMapping()){
if ((dataValue == null) || (dataValue.getClass() != mapping.getAttributeClassification())) {
try {
dataValue = session.getDatasourcePlatform().convertObject(dataValue, mapping.getAttributeClassification());
} catch (ConversionException e) {
throw ConversionException.couldNotBeConverted(this, mapping.getDescriptor(), e);
}
}
}
root.setObject(dataValue);
return root;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.core
public Object convertDataValueToObjectValue(Object dataValue,
Session session) {
XMLRoot root = new XMLRoot();
root.setLocalName(this.rootFragment.getLocalName());
root.setNamespaceURI(this.rootFragment.getNamespaceURI());
if(mapping.isAbstractDirectMapping()){
if ((dataValue == null) || (dataValue.getClass() != mapping.getAttributeClassification())) {
try {
dataValue = session.getDatasourcePlatform().convertObject(dataValue, mapping.getAttributeClassification());
} catch (ConversionException e) {
throw ConversionException.couldNotBeConverted(this, mapping.getDescriptor(), e);
}
}
}
root.setObject(dataValue);
return root;
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
public Object convertDataValueToObjectValue(Object dataValue,
Session session) {
XMLRoot root = new XMLRoot();
root.setLocalName(this.rootFragment.getLocalName());
root.setNamespaceURI(this.rootFragment.getNamespaceURI());
if(mapping.isAbstractDirectMapping()){
if ((dataValue == null) || (dataValue.getClass() != mapping.getAttributeClassification())) {
try {
dataValue = session.getDatasourcePlatform().convertObject(dataValue, mapping.getAttributeClassification());
} catch (ConversionException e) {
throw ConversionException.couldNotBeConverted(this, mapping.getDescriptor(), e);
}
}
}
root.setObject(dataValue);
return root;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
private Object buildFragment(Property property, SDODataObject parentObject, SDODataObject value) {
//build an XML Fragment from this SDO
XMLPlatform xmlPlatform = XMLPlatformFactory.getInstance().getXMLPlatform();
XMLMarshaller xmlMarshaller = ((SDOXMLHelper)helperContext.getXMLHelper()).getXmlContext().createMarshaller();
Document doc = xmlPlatform.createDocument();
XMLRoot root = new XMLRoot();
root.setObject(value);
root.setLocalName(property.getName());
if(((SDOProperty)property).isNamespaceQualified()){
root.setNamespaceURI(parentObject.getType().getURI());
}
xmlMarshaller.marshal(root, doc);
return doc.getDocumentElement();
}
}
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
/**
* Return a populated XMLRoot object.
*/
public Object getCurrentObject() {
// this assumes that since we're unmarshalling to a primitive wrapper, the root
// element has a single text node. if, however, the root element doesn't have
// a text node as a first child, we'll try converting null
String val = null;
if (characters != null) {
val = characters.toString();
}
XMLRoot xmlRoot = new XMLRoot();
xmlRoot.setObject(((XMLConversionManager) session.getDatasourcePlatform().getConversionManager()).convertObject(val, targetClass));
xmlRoot.setLocalName(getRootElementName());
xmlRoot.setNamespaceURI(getRootElementNamespaceUri());
return xmlRoot;
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo
private Object buildFragment(Property property, SDODataObject parentObject, SDODataObject value) {
//build an XML Fragment from this SDO
XMLPlatform xmlPlatform = XMLPlatformFactory.getInstance().getXMLPlatform();
XMLMarshaller xmlMarshaller = ((SDOXMLHelper)helperContext.getXMLHelper()).getXmlContext().createMarshaller();
Document doc = xmlPlatform.createDocument();
XMLRoot root = new XMLRoot();
root.setObject(value);
root.setLocalName(property.getName());
if(((SDOProperty)property).isNamespaceQualified()){
root.setNamespaceURI(parentObject.getType().getURI());
}
xmlMarshaller.marshal(root, doc);
return doc.getDocumentElement();
}
}
阅读下面的博客后,我整理了一个对象。 missing XMLRoot T objectToSerialize; JAXBElement je=new JAXBElement(new QName(“na
[XmlRoot("ConfigurationRoot")] public class XmlDBConfiguration { [XmlArray("Customers")] [Xm
我有一个名为 DocumentDataSet 的数据集和一个名为 Document 的类。 当数据集被序列化时,我需要将它的根命名为“Document”,因为我正在与第 3 方网络服务进行通信。 虽然
:我正在开发一个 .Net web api,我们有一个基类来处理来 self 们 api 的所有响应。此类将始终作为请求的根返回,其中包含用户在其中请求的任何数据。 因此用户将始终收到如下响应:
我需要将一个有效的 xml 字符串序列化为一个对象。问题是对象是其他对象的 2 个数组,我不知道以下注释是否正确: [XmlRoot("Data")] public class Data {
我正在尝试将自定义类序列化为 XML。这是类(class): [Serializable()] [XmlRoot("KVP")] public class SerializableKeyValuePa
我正在尝试弄清楚如何将以下类序列化为 XML(以特定方式,见下文): [XmlRoot("Farm")] public class Farm { [XmlArray] [XmlArra
有没有办法在运行时设置对象或类的 xmlroot? [XmlRoot("data")] public class MyRoot { [XmlElement("bar")] public
我有一个带有 class 属性的类: [XmlRoot(ElementName = "RootXML")] public class Apply { /My Properties } 现在从上
我有一堆从模式生成的类。我无法触及它们 - 对我来说是不可变的源泉。 这些类是架构中的顶级元素。每个都指向同名的类型: 生成一个具有所有必要属性的 FooType 类,但它没有 @XmlRo
我们观察到,当我们公开一个使用各种 xml 序列化属性修饰的类的 WCF 服务时,尽管我们在接口(interface)上使用了 XmlSerializerFormat 属性,但任何操作参数上的任何 X
我有大量 XML 文件需要对其执行反序列化。这些文件具有不同的根名称(超过 250 个)。在访问 XML 类以检索我的数据之前,我试图通过 XmlSerializer 传递根属性名称。这是我所拥有的,
我正在尝试让我的 httphandler 打印出格式如下的 XML 文件: ... ... ... 但出于某种原因,ScheduledShow.cs 中的属性 XmlRoo
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.isNil()方法的一些代码示例,展示了XMLRoot.isNil()的具体用法。这些代码示例主要来源于Gi
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.getLocalName()方法的一些代码示例,展示了XMLRoot.getLocalName()的具体用法
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.getObject()方法的一些代码示例,展示了XMLRoot.getObject()的具体用法。这些代码示
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.getXMLVersion()方法的一些代码示例,展示了XMLRoot.getXMLVersion()的具体
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.setSchemaType()方法的一些代码示例,展示了XMLRoot.setSchemaType()的具体
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.getSchemaType()方法的一些代码示例,展示了XMLRoot.getSchemaType()的具体
本文整理了Java中org.eclipse.persistence.oxm.XMLRoot.setNamespaceURI()方法的一些代码示例,展示了XMLRoot.setNamespaceURI(
我是一名优秀的程序员,十分优秀!