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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
|
@Component public class DefaultExceptionHandler implements ExceptionHandler {
@Autowired private ExceptionClassifier exceptionClassifier;
@Autowired private ExceptionProcessor exceptionProcessor;
@Autowired private ExceptionLogger exceptionLogger;
@Autowired private ExceptionMonitor exceptionMonitor;
@Override public void handleException(ThreadPoolExecutor executor, Runnable task, Throwable throwable) { try { ExceptionClassifier.ExceptionType type = exceptionClassifier.classify(throwable);
exceptionLogger.logException(task, throwable, type);
ExceptionHandleResult result = exceptionProcessor.process(throwable, type);
exceptionMonitor.recordException(throwable, type, result);
handleExceptionResult(executor, task, throwable, result);
} catch (Exception e) { log.error("异常处理失败", e); handleFallback(executor, task, throwable); } }
@Override public void handleUncaughtException(Thread thread, Throwable throwable) { try { log.error("线程未捕获异常: {}", thread.getName(), throwable);
exceptionLogger.logUncaughtException(thread, throwable);
exceptionMonitor.recordUncaughtException(thread, throwable);
if (shouldTerminateThread(throwable)) { log.error("严重异常,终止线程: {}", thread.getName()); thread.interrupt(); }
} catch (Exception e) { log.error("未捕获异常处理失败", e); } }
@Override public void handleRejectedExecution(Runnable task, ThreadPoolExecutor executor) { try { log.warn("任务被拒绝执行: {}, 线程池状态: active={}, queue={}", task.getClass().getSimpleName(), executor.getActiveCount(), executor.getQueue().size());
exceptionLogger.logRejectedExecution(task, executor);
exceptionMonitor.recordRejectedExecution(task, executor);
handleRejectedExecutionFallback(task, executor);
} catch (Exception e) { log.error("拒绝执行处理失败", e); } }
private void handleExceptionResult(ThreadPoolExecutor executor, Runnable task, Throwable throwable, ExceptionHandleResult result) { switch (result.getAction()) { case RETRY: retryTask(executor, task, result.getRetryCount(), result.getRetryDelay()); break; case SKIP: log.warn("跳过任务执行: {}", task); break; case FAIL: log.error("任务执行失败: {}", task, throwable); break; case DEGRADE: degradeTask(executor, task); break; case RECOVER: recoverTask(executor, task); break; } }
private void retryTask(ThreadPoolExecutor executor, Runnable task, int retryCount, long retryDelay) { if (retryCount > 0) { try { Thread.sleep(retryDelay);
executor.submit(task);
log.info("任务重试提交成功,剩余重试次数: {}", retryCount - 1);
} catch (Exception e) { log.error("任务重试失败", e); } } }
private void degradeTask(ThreadPoolExecutor executor, Runnable task) { try { Runnable degradedTask = createDegradedTask(task);
executor.submit(degradedTask);
log.info("任务降级处理完成");
} catch (Exception e) { log.error("任务降级失败", e); } }
private void recoverTask(ThreadPoolExecutor executor, Runnable task) { try { Runnable recoveredTask = createRecoveredTask(task);
executor.submit(recoveredTask);
log.info("任务恢复处理完成");
} catch (Exception e) { log.error("任务恢复失败", e); } }
private void handleRejectedExecutionFallback(Runnable task, ThreadPoolExecutor executor) { try { if (hasBackupThreadPool()) { submitToBackupThreadPool(task); log.info("任务提交到备用线程池"); return; }
if (canExecuteDirectly(task)) { executeDirectly(task); log.info("任务直接执行"); return; }
recordToDeadLetterQueue(task, new RejectedExecutionException("任务被拒绝执行")); log.warn("任务记录到死信队列");
} catch (Exception e) { log.error("拒绝执行降级处理失败", e); } }
private boolean shouldTerminateThread(Throwable throwable) { if (throwable instanceof OutOfMemoryError) { return true; }
if (throwable instanceof StackOverflowError) { return true; }
if (throwable instanceof NoClassDefFoundError) { return true; }
return false; }
private Runnable createDegradedTask(Runnable originalTask) { return () -> { try { log.info("执行降级任务: {}", originalTask.getClass().getSimpleName()); } catch (Exception e) { log.error("降级任务执行失败", e); } }; }
private Runnable createRecoveredTask(Runnable originalTask) { return () -> { try { log.info("执行恢复任务: {}", originalTask.getClass().getSimpleName()); } catch (Exception e) { log.error("恢复任务执行失败", e); } }; } }
|