向当前 Java 线程添加属性

发布于 2024-10-31 06:35:20 字数 270 浏览 0 评论 0原文

如何在 Java 中将“attributes”设置为当前 Thread,我想设置键值并在另一个位置但在同一个线程中获取值。就像这个 http://logging.apache.org/ log4j/1.2/apidocs/org/apache/log4j/MDC.html

How to I could set 'attributes' to current Thread in Java, I want to set key-values and get the value in another place, but in the same Thread. like to this http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/MDC.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

天冷不及心凉 2024-11-07 06:35:20

我认为您不能向 Java 中的任何给定线程添加属性,但您可以使用 ThreadLocal 实例来存储每个线程的任何特殊信息。

http://download.oracle.com/javase/6 /docs/api/java/lang/ThreadLocal.html

I do not think you can add attributes to any given thread in Java, but you could use a ThreadLocal instance to store any special information per thread.

http://download.oracle.com/javase/6/docs/api/java/lang/ThreadLocal.html

凉墨 2024-11-07 06:35:20

以下是@edalorzo 的答案的示例代码:

import java.util.HashMap;
import java.util.Map;

public class ThreadAttributes {
    private static ThreadLocal<Map<String, String>> threadAttrs = new ThreadLocal<Map<String, String>>() {
        @Override
        protected Map<String, String> initialValue() {
            return new HashMap<String, String>();
        }
    };

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

    public static void set(String key, String value) {
        threadAttrs.get().put(key, value);
    }
}

要使用它,请执行以下操作:

ThreadAttributes.get("attribute"); //to get an attribute
ThreadAttributes.set("attribute", "toValue"); //to set an attribute

警告:如果您的应用程序创建了很多线程并且不重用它们,则此代码可能会泄漏HashMap

Here's sample code for @edalorzo's answer:

import java.util.HashMap;
import java.util.Map;

public class ThreadAttributes {
    private static ThreadLocal<Map<String, String>> threadAttrs = new ThreadLocal<Map<String, String>>() {
        @Override
        protected Map<String, String> initialValue() {
            return new HashMap<String, String>();
        }
    };

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

    public static void set(String key, String value) {
        threadAttrs.get().put(key, value);
    }
}

To use it just this:

ThreadAttributes.get("attribute"); //to get an attribute
ThreadAttributes.set("attribute", "toValue"); //to set an attribute

Warning: if you application creates lots threads and does not reuse them this code will potentially leak HashMaps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文