Home / Class/ FilterConfigurationWithAnnotationAndDefaultDispatcherTypes Class — spring-boot Architecture

FilterConfigurationWithAnnotationAndDefaultDispatcherTypes Class — spring-boot Architecture

Architecture documentation for the FilterConfigurationWithAnnotationAndDefaultDispatcherTypes class in ServletContextInitializerBeansTests.java from the spring-boot codebase.

Entity Profile

Source Code

core/spring-boot/src/test/java/org/springframework/boot/web/servlet/ServletContextInitializerBeansTests.java lines 358–376

	@Configuration(proxyBeanMethods = false)
	static class FilterConfigurationWithAnnotationAndDefaultDispatcherTypes {

		@Bean
		@FilterRegistration(name = "test")
		TestOncePerRequestFilter testFilter() {
			return new TestOncePerRequestFilter();
		}

		static class TestOncePerRequestFilter extends OncePerRequestFilter {

			@Override
			protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response,
					FilterChain filterChain) {
			}

		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free