- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.eclipse.persistence.oxm.XMLMarshaller.isFormattedOutput()
方法的一些代码示例,展示了XMLMarshaller.isFormattedOutput()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。XMLMarshaller.isFormattedOutput()
方法的具体详情如下:
包路径:org.eclipse.persistence.oxm.XMLMarshaller
类名称:XMLMarshaller
方法名:isFormattedOutput
[英]Returns if this XMLMarshaller should format the XML By default this is set to true and the XML marshalled will be formatted.
[中]返回此XMLMarshaller是否应在默认情况下格式化XML,该值设置为true,并且将格式化已编组的XML。
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy
public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
if (objectValue != null && elementClass.isAssignableFrom(objectValue.getClass())) {
ErrorHandler handler = marshaller.getErrorHandler();
Source source = null;
if(handler != null && handler instanceof JAXBErrorHandler) {
source = domHandler.marshal(objectValue, ((JAXBErrorHandler)handler).getValidationEventHandler());
} else {
source = domHandler.marshal(objectValue, null);
}
DOMResult result = new DOMResult();
if(source instanceof DOMSource){
Node n = ((DOMSource)source).getNode();
if(n.getNodeType() == Node.DOCUMENT_NODE){
return ((Document)n).getDocumentElement();
}
return n;
}else{
XMLTransformer xmlTransformer = xmlPlatform.newXMLTransformer();
xmlTransformer.setFormattedOutput(marshaller.isFormattedOutput());
xmlTransformer.transform(source, result);
return result.getNode().getFirstChild();
}
}
return objectValue;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
public Object convertObjectValueToDataValue(Object objectValue, Session session, XMLMarshaller marshaller) {
if (objectValue != null && elementClass.isAssignableFrom(objectValue.getClass())) {
ErrorHandler handler = marshaller.getErrorHandler();
Source source = null;
if(handler != null && handler instanceof JAXBErrorHandler) {
source = domHandler.marshal(objectValue, ((JAXBErrorHandler)handler).getValidationEventHandler());
} else {
source = domHandler.marshal(objectValue, null);
}
DOMResult result = new DOMResult();
if(source instanceof DOMSource){
Node n = ((DOMSource)source).getNode();
if(n.getNodeType() == Node.DOCUMENT_NODE){
return ((Document)n).getDocumentElement();
}
return n;
}else{
XMLTransformer xmlTransformer = xmlPlatform.newXMLTransformer();
xmlTransformer.setFormattedOutput(marshaller.isFormattedOutput());
xmlTransformer.transform(source, result);
return result.getNode().getFirstChild();
}
}
return objectValue;
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
public Object getProperty(String propName) throws PropertyException {
if (null == propName) {
throw new IllegalArgumentException();
}
if (propName.equals(Marshaller.JAXB_ENCODING)) {
return this.xmlBinder.getMarshaller().getEncoding();
}
if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
return this.xmlBinder.getMarshaller().isFormattedOutput();
}
if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
return this.xmlBinder.getMarshaller().isFragment();
}
if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
return this.xmlBinder.getMarshaller().getSchemaLocation();
}
if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
return this.xmlBinder.getMarshaller().getNoNamespaceSchemaLocation();
}
throw new PropertyException(propName);
}
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy
@Override
public Object getProperty(String propName) throws PropertyException {
if (null == propName) {
throw new IllegalArgumentException();
}
if (propName.equals(Marshaller.JAXB_ENCODING)) {
return this.xmlBinder.getMarshaller().getEncoding();
}
if (propName.equals(Marshaller.JAXB_FORMATTED_OUTPUT)) {
return this.xmlBinder.getMarshaller().isFormattedOutput();
}
if (propName.equals(Marshaller.JAXB_FRAGMENT)) {
return this.xmlBinder.getMarshaller().isFragment();
}
if (propName.equals(Marshaller.JAXB_SCHEMA_LOCATION)) {
return this.xmlBinder.getMarshaller().getSchemaLocation();
}
if (propName.equals(Marshaller.JAXB_NO_NAMESPACE_SCHEMA_LOCATION)) {
return this.xmlBinder.getMarshaller().getNoNamespaceSchemaLocation();
}
throw new PropertyException(propName);
}
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
throw new IllegalArgumentException();
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
return xmlMarshaller.isFormattedOutput();
} else if (JAXB_ENCODING.equals(key)) {
return xmlMarshaller.getEncoding();
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.moxy
throw new IllegalArgumentException();
} else if (JAXB_FORMATTED_OUTPUT.equals(key)) {
return xmlMarshaller.isFormattedOutput();
} else if (JAXB_ENCODING.equals(key)) {
return xmlMarshaller.getEncoding();
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
if (isFormattedOutput()) {
record = new FormattedOutputStreamRecord();
} else {
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo
if(anXMLMarshaller.isFormattedOutput()) {
writerRecord = new FormattedWriterRecord();
} else {
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
if(anXMLMarshaller.isFormattedOutput()) {
writerRecord = new FormattedWriterRecord();
} else {
代码示例来源:origin: com.haulmont.thirdparty/eclipselink
if(anXMLMarshaller.isFormattedOutput()) {
writerRecord = new FormattedWriterRecord();
} else {
代码示例来源:origin: org.eclipse.persistence/org.eclipse.persistence.sdo
if(anXMLMarshaller.isFormattedOutput()) {
writerRecord = new FormattedWriterRecord();
} else {
代码示例来源:origin: org.eclipse.persistence/com.springsource.org.eclipse.persistence
if (isFormattedOutput()) {
writerRecord = new FormattedWriterRecord();
} else {
本文整理了Java中org.eclipse.persistence.oxm.XMLMarshaller.isFormattedOutput()方法的一些代码示例,展示了XMLMarshaller.is
我是一名优秀的程序员,十分优秀!