1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.apache.log4j.xml;
19
20 import java.io.ByteArrayInputStream;
21 import java.io.InputStream;
22
23 import org.apache.logging.log4j.Logger;
24 import org.apache.logging.log4j.status.StatusLogger;
25 import org.apache.logging.log4j.util.Constants;
26 import org.xml.sax.EntityResolver;
27 import org.xml.sax.InputSource;
28
29
30
31
32
33
34 public class Log4jEntityResolver implements EntityResolver {
35 private static final Logger LOGGER = StatusLogger.getLogger();
36 private static final String PUBLIC_ID = "-//APACHE//DTD LOG4J 1.2//EN";
37
38 @Override
39 public InputSource resolveEntity(String publicId, String systemId) {
40 if (systemId.endsWith("log4j.dtd") || PUBLIC_ID.equals(publicId)) {
41 Class<?> clazz = getClass();
42 InputStream in = clazz.getResourceAsStream("/org/apache/log4j/xml/log4j.dtd");
43 if (in == null) {
44 LOGGER.warn("Could not find [log4j.dtd] using [{}] class loader, parsed without DTD.",
45 clazz.getClassLoader());
46 in = new ByteArrayInputStream(Constants.EMPTY_BYTE_ARRAY);
47 }
48 return new InputSource(in);
49 }
50 return null;
51 }
52 }