kongzy
2023-11-24 ebe94e19812a1b24257d60831ec932756855e94b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.gkhy.assess.common.utils;
 
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
 
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
 
/**
 * 线程相关工具类
 */
public class Threads {
    private static final Logger logger = LoggerFactory.getLogger(Threads.class);
    public static void printException(Runnable r,Throwable t){
        if(t==null && r instanceof Future<?>){
            try {
                Future<?> future= (Future<?>) r;
                if(future.isDone()) {
                    future.get();
                }
            } catch (CancellationException e){
                t=e;
            } catch (ExecutionException e) {
                t=e.getCause();
            }catch (InterruptedException e) {
                Thread.currentThread().interrupt();
            }
        }
        if(t!=null){
            logger.error(t.getMessage(),t);
        }
    }
}