我在 servlet 中有以下线程,它在其构造函数中接受 ConcurrentHashMap。
RequestThread(ConcurrentHashMap<String, String[]> sentRequests, ServletContext context) {
this.sentRequests = sentRequests;
this.context = context;
}
多个用户访问 ConcurrentHashMap。它应该在所有类中使用。
以这种方式传递 ConcurrentHashMap是线程安全的还是有更好的方法呢?