public final class XSLTLayout
extends org.apache.log4j.Layout
implements org.apache.log4j.xml.UnrecognizedElementHandler
When used with a FileAppender or similar, the transformation of an event will be appended to the results for previous transforms. If each transform results in an XML element, then resulting file will only be an XML entity since an XML document requires one and only one top-level element. To process the entity, reference it in a XML document like so:
<!DOCTYPE log4j:eventSet [<!ENTITY data SYSTEM "data.xml">]>
<log4j:eventSet xmlns:log4j="http://jakarta.apache.org/log4j/">
&data
</log4j:eventSet>
The layout will detect the encoding and media-type specified in the transform. If no encoding is specified in the transform, an xsl:output element specifying the US-ASCII encoding will be inserted before processing the transform. If an encoding is specified in the transform, the same encoding should be explicitly specified for the appender.
Extracting MDC values can be expensive when used with log4j releases prior to 1.2.15. Output of MDC values is enabled by default but be suppressed by setting properties to false.
Extracting location info can be expensive regardless of log4j version. Output of location info is disabled by default but can be enabled by setting locationInfo to true.
Embedded transforms in XML configuration should not depend on namespace prefixes defined earlier in the document as namespace aware parsing in not generally performed when using DOMConfigurator. The transform will serialize and reparse to get the namespace aware document needed.
| Constructor and Description |
|---|
XSLTLayout()
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
void |
activateOptions() |
String |
format(org.apache.log4j.spi.LoggingEvent event) |
String |
getContentType() |
boolean |
getLocationInfo()
Gets whether location info should be output.
|
boolean |
getProperties()
Gets whether MDC key-value pairs should be output.
|
boolean |
ignoresThrowable()
Gets whether throwables should not be output.
|
boolean |
parseUnrecognizedElement(Element element,
Properties props) |
void |
setIgnoresThrowable(boolean ignoresThrowable)
Sets whether throwables should not be output.
|
void |
setLocationInfo(boolean flag)
The LocationInfo option takes a boolean value.
|
void |
setProperties(boolean flag)
Sets whether MDC key-value pairs should be output, default false.
|
void |
setTransform(Document xsltdoc)
Sets XSLT transform.
|
public String getContentType()
getContentType in class org.apache.log4j.Layoutpublic void setLocationInfo(boolean flag)
If you are embedding this layout within an org.apache.log4j.net.SMTPAppender then make sure to set the
LocationInfo option of that appender as well.
flag - new value.public boolean getLocationInfo()
public void setProperties(boolean flag)
flag - new value.public boolean getProperties()
public void activateOptions()
activateOptions in interface org.apache.log4j.spi.OptionHandlerpublic boolean ignoresThrowable()
ignoresThrowable in class org.apache.log4j.Layoutpublic void setIgnoresThrowable(boolean ignoresThrowable)
ignoresThrowable - if true, throwables should not be output.public String format(org.apache.log4j.spi.LoggingEvent event)
format in class org.apache.log4j.Layoutpublic void setTransform(Document xsltdoc) throws TransformerConfigurationException
xsltdoc - DOM document containing XSLT transform source,
may be modified.TransformerConfigurationException - if transformer can not be
created.public boolean parseUnrecognizedElement(Element element, Properties props) throws Exception
parseUnrecognizedElement in interface org.apache.log4j.xml.UnrecognizedElementHandlerExceptionCopyright © 2006–2024 OPS4J - Open Participation Software for Java. All rights reserved.