Home / Class/ LoggedExceptionHandlerThreadLocal Class — spring-boot Architecture

LoggedExceptionHandlerThreadLocal Class — spring-boot Architecture

Architecture documentation for the LoggedExceptionHandlerThreadLocal class in SpringBootExceptionHandler.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/main/java/org/springframework/boot/SpringBootExceptionHandler.java lines 128–138

	private static final class LoggedExceptionHandlerThreadLocal extends ThreadLocal<SpringBootExceptionHandler> {

		@Override
		protected SpringBootExceptionHandler initialValue() {
			SpringBootExceptionHandler handler = new SpringBootExceptionHandler(
					Thread.currentThread().getUncaughtExceptionHandler());
			Thread.currentThread().setUncaughtExceptionHandler(handler);
			return handler;
		}

	}

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free