Skip to content

Commit 7b3770f

Browse files
committedSep 30, 2024
Re-enable log4j2 JMX support
1 parent 149fcd1 commit 7b3770f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎exist-parent/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -855,6 +855,7 @@
855855
<user.timezone>Europe/Berlin</user.timezone>
856856
<java.locale.providers>JRE,CLDR,SPI</java.locale.providers>
857857
<log4j.configurationFile>${project.build.testOutputDirectory}/log4j2.xml</log4j.configurationFile>
858+
<log4j2.disableJmx>false</log4j2.disableJmx>
858859
</systemPropertyVariables>
859860
</configuration>
860861
</plugin>

‎exist-start/src/main/java/org/exist/start/Main.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@
6565
public class Main {
6666
public static final String STANDARD_ENABLED_JETTY_CONFIGS = "standard.enabled-jetty-configs";
6767
public static final String STANDALONE_ENABLED_JETTY_CONFIGS = "standalone.enabled-jetty-configs";
68+
public static final String PROP_LOG4J_DISABLEJMX = "log4j2.disableJmx";
6869

6970
private static final int ERROR_CODE_GENERAL = 1;
7071
private static final int ERROR_CODE_NO_JETTY_CONFIG = 7;
@@ -261,7 +262,6 @@ public void runEx(String[] args) throws StartException {
261262
}
262263

263264
if (log4jConfigurationFile.isPresent() && Files.isReadable(log4jConfigurationFile.get())) {
264-
// System.setProperty(PROP_LOG4J_CONFIGURATION_FILE, log4jConfigurationFile.get().toUri().toASCIIString());
265265
System.setProperty(PROP_LOG4J_CONFIGURATION_FILE, log4jConfigurationFile.get().toAbsolutePath().toString());
266266
}
267267
}
@@ -271,6 +271,9 @@ public void runEx(String[] args) throws StartException {
271271
System.setProperty(PROP_JUL_MANAGER, Optional.ofNullable(System.getProperty(PROP_JUL_MANAGER)).orElse("org.apache.logging.log4j.jul.LogManager"));
272272
}
273273

274+
// Enable JXM support log4j since v2.24.0 [2024]
275+
System.setProperty(PROP_LOG4J_DISABLEJMX, "false");
276+
274277
// clean up tempdir for Jetty...
275278
try {
276279
final Path tmpdir = Paths.get(System.getProperty(PROP_JAVA_TEMP_DIR)).toAbsolutePath();

0 commit comments

Comments
 (0)