Home / Class/ OrderedServletConfigurationWithAnnotationAndOrder Class — spring-boot Architecture

OrderedServletConfigurationWithAnnotationAndOrder Class — spring-boot Architecture

Architecture documentation for the OrderedServletConfigurationWithAnnotationAndOrder 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 300–312

	@Configuration(proxyBeanMethods = false)
	static class OrderedServletConfigurationWithAnnotationAndOrder {

		static final int ORDER = 5;

		@Bean
		@ServletRegistration
		@Order(ORDER)
		OrderedTestServlet testServlet() {
			return new OrderedTestServlet();
		}

	}

Analyze Your Own Codebase

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

Try Supermodel Free