File tree 2 files changed +5
-1
lines changed
exist-start/src/main/java/org/exist/start
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 855
855
<user .timezone>Europe/Berlin</user .timezone>
856
856
<java .locale.providers>JRE,CLDR,SPI</java .locale.providers>
857
857
<log4j .configurationFile>${project.build.testOutputDirectory} /log4j2.xml</log4j .configurationFile>
858
+ <log4j2 .disableJmx>false</log4j2 .disableJmx>
858
859
</systemPropertyVariables >
859
860
</configuration >
860
861
</plugin >
Original file line number Diff line number Diff line change 65
65
public class Main {
66
66
public static final String STANDARD_ENABLED_JETTY_CONFIGS = "standard.enabled-jetty-configs" ;
67
67
public static final String STANDALONE_ENABLED_JETTY_CONFIGS = "standalone.enabled-jetty-configs" ;
68
+ public static final String PROP_LOG4J_DISABLEJMX = "log4j2.disableJmx" ;
68
69
69
70
private static final int ERROR_CODE_GENERAL = 1 ;
70
71
private static final int ERROR_CODE_NO_JETTY_CONFIG = 7 ;
@@ -261,7 +262,6 @@ public void runEx(String[] args) throws StartException {
261
262
}
262
263
263
264
if (log4jConfigurationFile .isPresent () && Files .isReadable (log4jConfigurationFile .get ())) {
264
- // System.setProperty(PROP_LOG4J_CONFIGURATION_FILE, log4jConfigurationFile.get().toUri().toASCIIString());
265
265
System .setProperty (PROP_LOG4J_CONFIGURATION_FILE , log4jConfigurationFile .get ().toAbsolutePath ().toString ());
266
266
}
267
267
}
@@ -271,6 +271,9 @@ public void runEx(String[] args) throws StartException {
271
271
System .setProperty (PROP_JUL_MANAGER , Optional .ofNullable (System .getProperty (PROP_JUL_MANAGER )).orElse ("org.apache.logging.log4j.jul.LogManager" ));
272
272
}
273
273
274
+ // Enable JXM support log4j since v2.24.0 [2024]
275
+ System .setProperty (PROP_LOG4J_DISABLEJMX , "false" );
276
+
274
277
// clean up tempdir for Jetty...
275
278
try {
276
279
final Path tmpdir = Paths .get (System .getProperty (PROP_JAVA_TEMP_DIR )).toAbsolutePath ();
You can’t perform that action at this time.
0 commit comments