これについては、Oracle とのオープンな RFEがあります。オラクルの従業員からのコメントによると、彼らは問題を理解しておらず、修正しないようです。これは、JDK でサポートするのが非常に簡単な (後方互換性を損なうことなく) これらのことの 1 つであるため、RFE が誤解されるのはちょっと残念です。
指摘したように、独自のThreadFactoryを実装する必要があります。この目的のためだけに Guava または Apache Commons を取り込みたくない場合は、ここでThreadFactory
使用できる実装を提供します。これは、スレッド名のプレフィックスを「プール」以外に設定できることを除いて、JDK から得られるものとまったく同じです。
package org.demo.concurrency;
import java.util.concurrent.ThreadFactory;
import java.util.concurrent.atomic.AtomicInteger;
/**
* ThreadFactory with the ability to set the thread name prefix.
* This class is exactly similar to
* {@link java.util.concurrent.Executors#defaultThreadFactory()}
* from JDK8, except for the thread naming feature.
*
* <p>
* The factory creates threads that have names on the form
* <i>prefix-N-thread-M</i>, where <i>prefix</i>
* is a string provided in the constructor, <i>N</i> is the sequence number of
* this factory, and <i>M</i> is the sequence number of the thread created
* by this factory.
*/
public class ThreadFactoryWithNamePrefix implements ThreadFactory {
// Note: The source code for this class was based entirely on
// Executors.DefaultThreadFactory class from the JDK8 source.
// The only change made is the ability to configure the thread
// name prefix.
private static final AtomicInteger poolNumber = new AtomicInteger(1);
private final ThreadGroup group;
private final AtomicInteger threadNumber = new AtomicInteger(1);
private final String namePrefix;
/**
* Creates a new ThreadFactory where threads are created with a name prefix
* of <code>prefix</code>.
*
* @param prefix Thread name prefix. Never use a value of "pool" as in that
* case you might as well have used
* {@link java.util.concurrent.Executors#defaultThreadFactory()}.
*/
public ThreadFactoryWithNamePrefix(String prefix) {
SecurityManager s = System.getSecurityManager();
group = (s != null) ? s.getThreadGroup()
: Thread.currentThread().getThreadGroup();
namePrefix = prefix + "-"
+ poolNumber.getAndIncrement()
+ "-thread-";
}
@Override
public Thread newThread(Runnable r) {
Thread t = new Thread(group, r,
namePrefix + threadNumber.getAndIncrement(),
0);
if (t.isDaemon()) {
t.setDaemon(false);
}
if (t.getPriority() != Thread.NORM_PRIORITY) {
t.setPriority(Thread.NORM_PRIORITY);
}
return t;
}
}
それを使用したい場合は、すべてのExecutors
メソッドで独自の を提供できるという事実を利用するだけThreadFactory
です。
これ
Executors.newSingleThreadExecutor();
pool-N-thread-M
スレッドに名前が付けられている ExecutorService を提供しますが、
Executors.newSingleThreadExecutor(new ThreadFactoryWithNamePrefix("primecalc"));
スレッドの名前が付けられている ExecutorService を取得しますprimecalc-N-thread-M
。出来上がり!