All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.log4j.MDCFriend Maven / Gradle / Ivy

There is a newer version: 6.1.2
Show newest version
package org.apache.log4j;

import java.lang.reflect.Field;
import java.lang.reflect.Method;

import org.apache.log4j.helpers.ThreadLocalMap;

public class MDCFriend {

	public static void fixForJava9() {
		if (MDC.mdc.tlm == null) {
			MDC.mdc.tlm = new ThreadLocalMap();
			MDC.mdc.java1 = false;
			setRemoveMethod(MDC.mdc);
		}

	}

	private static void setRemoveMethod(MDC mdc) {
		try {
			Method removeMethod = ThreadLocal.class.getMethod("remove");
			Field removeMethodField = MDC.class.getDeclaredField("removeMethod");
			removeMethodField.setAccessible(true);
			removeMethodField.set(mdc, removeMethod);
		} catch (NoSuchMethodException e) {
		} catch (SecurityException e) {
		} catch (NoSuchFieldException e) {
		} catch (IllegalArgumentException e) {
		} catch (IllegalAccessException e) {
		}

	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy