org.slf4j.spi.MDCAdapter.get()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(13.2k)|赞(0)|评价(0)|浏览(148)

本文整理了Java中org.slf4j.spi.MDCAdapter.get()方法的一些代码示例,展示了MDCAdapter.get()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。MDCAdapter.get()方法的具体详情如下:
包路径:org.slf4j.spi.MDCAdapter
类名称:MDCAdapter
方法名:get

MDCAdapter.get介绍

[英]Get the context identified by the key parameter. The key parameter cannot be null.
[中]获取由key参数标识的上下文。key参数不能为空。

代码示例

代码示例来源:origin: redisson/redisson

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: wildfly/wildfly

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: camunda/camunda-bpm-platform

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

代码示例来源:origin: org.echocat.jomon/runtime

@Override
public String get(String key) {
  return _delegate.get(key);
}

代码示例来源:origin: brant-hwang/spring-logback-slack-notification-example

public static String get(String key) {
  return mdc.get(key);
}

代码示例来源:origin: com.alibaba.citrus.tool/antx-autoexpand

/**
 * Get the context identified by the <code>key</code> parameter. The 
 * <code>key</code> parameter cannot be null.
 * 
 * <p>This method delegates all work to the MDC of the underlying logging system. 
 * 
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

代码示例来源:origin: com.github.oshi/oshi-core-shaded

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: com.impetus.fabric/fabric-jdbc-driver-shaded

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: org.apache.directory.api/api-ldap-client-all

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: ops4j/org.ops4j.pax.logging

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: at.bestsolution.efxclipse.eclipse/org.slf4j.api

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

代码示例来源:origin: org.apache.activemq/activemq-all

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: io.virtdata/virtdata-lib-realer

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: wolpi/prim-ftpd

/**
 * Get the context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 * 
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

代码示例来源:origin: com.ning.billing/killbill-osgi-bundles-jruby

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

代码示例来源:origin: uk.co.nichesolutions/slf4j-api

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: org.jboss.eap/wildfly-client-all

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: Nextdoor/bender

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
  if (key == null) {
    throw new IllegalArgumentException("key parameter cannot be null");
  }
  if (mdcAdapter == null) {
    throw new IllegalStateException("MDCAdapter cannot be null. See also " + NULL_MDCA_URL);
  }
  return mdcAdapter.get(key);
}

代码示例来源:origin: org.kill-bill.billing/killbill-osgi-bundles-jruby

/**
 * Get the diagnostic context identified by the <code>key</code> parameter. The
 * <code>key</code> parameter cannot be null.
 * 
 * <p>
 * This method delegates all work to the MDC of the underlying logging system.
 *
 * @param key  
 * @return the string value identified by the <code>key</code> parameter.
 * @throws IllegalArgumentException
 *           in case the "key" parameter is null
 */
public static String get(String key) throws IllegalArgumentException {
 if (key == null) {
  throw new IllegalArgumentException("key parameter cannot be null");
 }
 if (mdcAdapter == null) {
  throw new IllegalStateException("MDCAdapter cannot be null. See also "
    + NULL_MDCA_URL);
 }
 return mdcAdapter.get(key);
}

相关文章