私はJUnitのドキュメントで、次の例を見つけました: public static class HasGlobalLongTimeout {
@Rule
public Timeout globalTimeout= new Timeout(20);
@Test
public void run1() throws InterruptedException {
ファイル解析のタスクを実行するスレッドがあります。 Tomcatの起動からシャットダウンまでのバックグラウンドで実行されるデーモンスレッドとして設定されています。 私は、中断やサーバのシャットダウン時にスレッド終了を処理しようとしています。私は正しく行くかどうかを知りたい。 class LoadingModule{ // Thread is started from here
th