Uses of Interface
org.springframework.core.Ordered
Packages that use Ordered Package Description org.springframework.aop.aspectj AspectJ integration package.org.springframework.aop.aspectj.annotation Classes enabling AspectJ 5 @Annotated classes to be used in Spring AOP.org.springframework.aop.aspectj.autoproxy Base classes enabling auto-proxying based on AspectJ.org.springframework.aop.config Support package for declarative AOP configuration, with XML schema being the primary configuration format.org.springframework.aop.framework Package containing Spring's basic AOP infrastructure, compliant with the AOP Alliance interfaces.org.springframework.aop.framework.autoproxy Bean post-processors for use in ApplicationContexts to simplify AOP usage by automatically creating AOP proxies without the need to use a ProxyFactoryBean.org.springframework.aop.interceptor Provides miscellaneous interceptor implementations.org.springframework.aop.support Convenience classes for using Spring's AOP API.org.springframework.beans This package contains interfaces and classes for manipulating Java beans.org.springframework.beans.factory.annotation Support package for annotation-driven bean configuration.org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories.org.springframework.cache.interceptor AOP-based solution for declarative caching demarcation.org.springframework.cache.jcache.interceptor AOP-based solution for declarative caching demarcation using JSR-107 annotations.org.springframework.context.annotation Annotation support for the Application Context, including JSR-250 "common" annotations, component-scanning, and Java-based metadata for creating Spring-managed objects.org.springframework.context.event Support classes for application events, like standard context events.org.springframework.context.support Classes supporting the org.springframework.context package, such as abstract base classes for ApplicationContext implementations and a MessageSource implementation.org.springframework.context.weaving Load-time weaving support for a Spring application context, building on Spring'sLoadTimeWeaverabstraction.org.springframework.core Provides basic classes for exception handling and version detection, and other core helpers that are not specific to any part of the framework.org.springframework.dao.annotation Annotation support for DAOs.org.springframework.jms.annotation Annotations and support classes for declarative JMS listener endpoints.org.springframework.messaging.handler Basic abstractions for working with message handler methods.org.springframework.messaging.simp.user Support for handling messages to "user" destinations (i.e.org.springframework.orm.hibernate5 Package providing integration of Hibernate 5.x with Spring concepts.org.springframework.orm.jpa.support Classes supporting theorg.springframework.orm.jpapackage.org.springframework.scheduling.annotation Java 5 annotation for asynchronous method execution.org.springframework.scripting.support Support classes for Spring's scripting package.org.springframework.test.context.event Test event support classes for the Spring TestContext Framework.org.springframework.test.context.jdbc JDBC support classes for the Spring TestContext Framework, including support for declarative SQL script execution via@Sql.org.springframework.test.context.support Support classes for the Spring TestContext Framework.org.springframework.test.context.transaction Transactional support classes for the Spring TestContext Framework.org.springframework.test.context.web Web support classes for the Spring TestContext Framework.org.springframework.transaction.event Spring's support for listening to transaction events.org.springframework.transaction.interceptor AOP-based solution for declarative transaction demarcation.org.springframework.transaction.support Support classes for the org.springframework.transaction package.org.springframework.validation.beanvalidation Support classes for integrating a JSR-303 Bean Validation provider (such as Hibernate Validator) into a Spring ApplicationContext and in particular with Spring's data binding and validation APIs.org.springframework.web.method Common infrastructure for handler method processing, as used by Spring MVC'sorg.springframework.web.servlet.mvc.methodpackage.org.springframework.web.reactive.function.server.support Classes supporting theorg.springframework.web.reactive.function.serverpackage.org.springframework.web.reactive.handler Provides HandlerMapping implementations including abstract base classes.org.springframework.web.reactive.result Support for various programming model styles including the invocation of different types of handlers, e.g.org.springframework.web.reactive.result.method Infrastructure for handler method processing.org.springframework.web.reactive.result.method.annotation Infrastructure for annotation-based handler method processing.org.springframework.web.reactive.result.view Support for result handling through view resolution.org.springframework.web.reactive.result.view.freemarker Support classes for the integration of FreeMarker as Spring web view technology.org.springframework.web.reactive.result.view.script Support classes for views based on the JSR-223 script engine abstraction (as included in Java 6+), e.g.org.springframework.web.servlet.function.support Classes supporting theorg.springframework.web.servlet.functionpackage.org.springframework.web.servlet.handler Provides standard HandlerMapping implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.mvc.annotation Support package for annotation-based Servlet MVC controllers.org.springframework.web.servlet.mvc.method Servlet-based infrastructure for handler method processing, building on theorg.springframework.web.methodpackage.org.springframework.web.servlet.mvc.method.annotation MVC infrastructure for annotation-based handler method processing, building on theorg.springframework.web.method.annotationpackage.org.springframework.web.servlet.mvc.support Support package for MVC controllers.org.springframework.web.servlet.view Provides standard View and ViewResolver implementations, including abstract base classes for custom implementations.org.springframework.web.servlet.view.freemarker Support classes for the integration of FreeMarker as Spring web view technology.org.springframework.web.servlet.view.groovy Support classes for the integration of Groovy Templates as Spring web view technology.org.springframework.web.servlet.view.script Support classes for views based on the JSR-223 script engine abstraction (as included in Java 6+), e.g.org.springframework.web.servlet.view.tiles3 Support classes for the integration of Tiles 3 (the standalone version of Tiles) as Spring web view technology.org.springframework.web.servlet.view.xslt Support classes for XSLT, providing a View implementation for XSLT stylesheets.org.springframework.web.socket.messaging WebSocket integration for Spring's messaging module.org.springframework.web.socket.server.support Server-side support classes including container-specific strategies for upgrading a request.Uses of Ordered in org.springframework.aop.aspectj
Subinterfaces of Ordered in org.springframework.aop.aspectj Modifier and Type Interface Description interfaceAspectInstanceFactoryInterface implemented to provide an instance of an AspectJ aspect.interfaceAspectJPrecedenceInformationInterface to be implemented by types that can supply the information needed to sort advice/advisors by AspectJ's precedence rules.Classes in org.springframework.aop.aspectj that implement Ordered Modifier and Type Class Description classAbstractAspectJAdviceBase class for AOP AllianceAdviceclasses wrapping an AspectJ aspect or an AspectJ-annotated advice method.classAspectJAfterAdviceSpring AOP advice wrapping an AspectJ after advice method.classAspectJAfterReturningAdviceSpring AOP advice wrapping an AspectJ after-returning advice method.classAspectJAfterThrowingAdviceSpring AOP advice wrapping an AspectJ after-throwing advice method.classAspectJAroundAdviceSpring AOP around advice (MethodInterceptor) that wraps an AspectJ advice method.classAspectJExpressionPointcutAdvisorSpring AOP Advisor that can be used for any AspectJ pointcut expression.classAspectJMethodBeforeAdviceSpring AOP advice that wraps an AspectJ before method.classAspectJPointcutAdvisorAspectJPointcutAdvisor that adapts anAbstractAspectJAdviceto thePointcutAdvisorinterface.classSimpleAspectInstanceFactoryImplementation ofAspectInstanceFactorythat creates a new instance of the specified aspect class for everySimpleAspectInstanceFactory.getAspectInstance()call.classSingletonAspectInstanceFactoryImplementation ofAspectInstanceFactorythat is backed by a specified singleton object, returning the same instance for everySingletonAspectInstanceFactory.getAspectInstance()call.Uses of Ordered in org.springframework.aop.aspectj.annotation
Subinterfaces of Ordered in org.springframework.aop.aspectj.annotation Modifier and Type Interface Description interfaceMetadataAwareAspectInstanceFactorySubinterface ofAspectInstanceFactorythat returnsAspectMetadataassociated with AspectJ-annotated classes.Classes in org.springframework.aop.aspectj.annotation that implement Ordered Modifier and Type Class Description classAnnotationAwareAspectJAutoProxyCreatorAspectJAwareAdvisorAutoProxyCreatorsubclass that processes all AspectJ annotation aspects in the current application context, as well as Spring Advisors.classBeanFactoryAspectInstanceFactoryAspectInstanceFactoryimplementation backed by a SpringBeanFactory.classLazySingletonAspectInstanceFactoryDecoratorDecorator to cause aMetadataAwareAspectInstanceFactoryto instantiate only once.classPrototypeAspectInstanceFactoryAspectInstanceFactorybacked by aBeanFactory-provided prototype, enforcing prototype semantics.protected static classReflectiveAspectJAdvisorFactory.SyntheticInstantiationAdvisorSynthetic advisor that instantiates the aspect.classSimpleMetadataAwareAspectInstanceFactoryImplementation ofMetadataAwareAspectInstanceFactorythat creates a new instance of the specified aspect class for everySimpleAspectInstanceFactory.getAspectInstance()call.classSingletonMetadataAwareAspectInstanceFactoryImplementation ofMetadataAwareAspectInstanceFactorythat is backed by a specified singleton object, returning the same instance for everySingletonAspectInstanceFactory.getAspectInstance()call.Uses of Ordered in org.springframework.aop.aspectj.autoproxy
Classes in org.springframework.aop.aspectj.autoproxy that implement Ordered Modifier and Type Class Description classAspectJAwareAdvisorAutoProxyCreatorAbstractAdvisorAutoProxyCreatorsubclass that exposes AspectJ's invocation context and understands AspectJ's rules for advice precedence when multiple pieces of advice come from the same aspect.Uses of Ordered in org.springframework.aop.config
Classes in org.springframework.aop.config that implement Ordered Modifier and Type Class Description classSimpleBeanFactoryAwareAspectInstanceFactoryImplementation ofAspectInstanceFactorythat locates the aspect from theBeanFactoryusing a configured bean name.Uses of Ordered in org.springframework.aop.framework
Classes in org.springframework.aop.framework that implement Ordered Modifier and Type Class Description classAbstractAdvisingBeanPostProcessorBase class forBeanPostProcessorimplementations that apply a Spring AOPAdvisorto specific beans.classProxyProcessorSupportBase class with common functionality for proxy processors, in particular ClassLoader management and theProxyProcessorSupport.evaluateProxyInterfaces(java.lang.Class<?>, org.springframework.aop.framework.ProxyFactory)algorithm.Uses of Ordered in org.springframework.aop.framework.autoproxy
Classes in org.springframework.aop.framework.autoproxy that implement Ordered Modifier and Type Class Description classAbstractAdvisorAutoProxyCreatorGeneric auto proxy creator that builds AOP proxies for specific beans based on detected Advisors for each bean.classAbstractAutoProxyCreatorBeanPostProcessorimplementation that wraps each eligible bean with an AOP proxy, delegating to specified interceptors before invoking the bean itself.classAbstractBeanFactoryAwareAdvisingPostProcessorExtension ofAbstractAutoProxyCreatorwhich implementsBeanFactoryAware, adds exposure of the original target class for each proxied bean (AutoProxyUtils.ORIGINAL_TARGET_CLASS_ATTRIBUTE), and participates in an externally enforced target-class mode for any given bean (AutoProxyUtils.PRESERVE_TARGET_CLASS_ATTRIBUTE).classBeanNameAutoProxyCreatorAuto proxy creator that identifies beans to proxy via a list of names.classDefaultAdvisorAutoProxyCreatorBeanPostProcessorimplementation that creates AOP proxies based on all candidateAdvisors in the currentBeanFactory.classInfrastructureAdvisorAutoProxyCreatorAuto-proxy creator that considers infrastructure Advisor beans only, ignoring any application-defined Advisors.Uses of Ordered in org.springframework.aop.interceptor
Classes in org.springframework.aop.interceptor that implement Ordered Modifier and Type Class Description classAsyncExecutionInterceptorAOP AllianceMethodInterceptorthat processes method invocations asynchronously, using a givenAsyncTaskExecutor.classExposeInvocationInterceptorInterceptor that exposes the currentMethodInvocationas a thread-local object.Uses of Ordered in org.springframework.aop.support
Classes in org.springframework.aop.support that implement Ordered Modifier and Type Class Description classAbstractBeanFactoryPointcutAdvisorAbstract BeanFactory-based PointcutAdvisor that allows for any Advice to be configured as reference to an Advice bean in a BeanFactory.classAbstractGenericPointcutAdvisorAbstract genericPointcutAdvisorthat allows for anyAdviceto be configured.classAbstractPointcutAdvisorAbstract base class forPointcutAdvisorimplementations.classDefaultBeanFactoryPointcutAdvisorConcrete BeanFactory-based PointcutAdvisor that allows for any Advice to be configured as reference to an Advice bean in the BeanFactory, as well as the Pointcut to be configured through a bean property.classDefaultIntroductionAdvisorSimpleIntroductionAdvisorimplementation that by default applies to any class.classDefaultPointcutAdvisorConvenient Pointcut-driven Advisor implementation.classNameMatchMethodPointcutAdvisorConvenient class for name-match method pointcuts that hold an Advice, making them an Advisor.classRegexpMethodPointcutAdvisorConvenient class for regexp method pointcuts that hold an Advice, making them anAdvisor.classStaticMethodMatcherPointcutAdvisorConvenient base class for Advisors that are also static pointcuts.Uses of Ordered in org.springframework.beans
Classes in org.springframework.beans that implement Ordered Modifier and Type Class Description classExtendedBeanInfoFactoryBeanInfoFactoryimplementation that evaluates whether bean classes have "non-standard" JavaBeans setter methods and are thus candidates for introspection by Spring's (package-visible)ExtendedBeanInfoimplementation.Uses of Ordered in org.springframework.beans.factory.annotation
Classes in org.springframework.beans.factory.annotation that implement Ordered Modifier and Type Class Description classAutowiredAnnotationBeanPostProcessorBeanPostProcessorimplementation that autowires annotated fields, setter methods, and arbitrary config methods.classCustomAutowireConfigurerABeanFactoryPostProcessorimplementation that allows for convenient registration of custom autowire qualifier types.classInitDestroyAnnotationBeanPostProcessorBeanPostProcessorimplementation that invokes annotated init and destroy methods.classRequiredAnnotationBeanPostProcessorDeprecated.as of 5.1, in favor of using constructor injection for required settings (or a customInitializingBeanimplementation)Uses of Ordered in org.springframework.beans.factory.config
Classes in org.springframework.beans.factory.config that implement Ordered Modifier and Type Class Description classCustomEditorConfigurerBeanFactoryPostProcessorimplementation that allows for convenient registration of customproperty editors.classCustomScopeConfigurerSimpleBeanFactoryPostProcessorimplementation that registers customScope(s)with the containingConfigurableBeanFactory.classPlaceholderConfigurerSupportAbstract base class for property resource configurers that resolve placeholders in bean definition property values.classPreferencesPlaceholderConfigurerDeprecated.as of 5.2, along withPropertyPlaceholderConfigurerclassPropertyOverrideConfigurerProperty resource configurer that overrides bean property values in an application context definition.classPropertyPlaceholderConfigurerDeprecated.as of 5.2; useorg.springframework.context.support.PropertySourcesPlaceholderConfigurerinstead which is more flexible through taking advantage of theEnvironmentandPropertySourcemechanisms.classPropertyResourceConfigurerAllows for configuration of individual bean property values from a property resource, i.e.Uses of Ordered in org.springframework.cache.interceptor
Classes in org.springframework.cache.interceptor that implement Ordered Modifier and Type Class Description classBeanFactoryCacheOperationSourceAdvisorAdvisor driven by aCacheOperationSource, used to include a cache advice bean for methods that are cacheable.Uses of Ordered in org.springframework.cache.jcache.interceptor
Classes in org.springframework.cache.jcache.interceptor that implement Ordered Modifier and Type Class Description classBeanFactoryJCacheOperationSourceAdvisorAdvisor driven by aJCacheOperationSource, used to include a cache advice bean for methods that are cacheable.Uses of Ordered in org.springframework.context.annotation
Classes in org.springframework.context.annotation that implement Ordered Modifier and Type Class Description classCommonAnnotationBeanPostProcessorBeanPostProcessorimplementation that supports common Java annotations out of the box, in particular the JSR-250 annotations in thejavax.annotationpackage.classConfigurationClassPostProcessorBeanFactoryPostProcessorused for bootstrapping processing of@Configurationclasses.Uses of Ordered in org.springframework.context.event
Subinterfaces of Ordered in org.springframework.context.event Modifier and Type Interface Description interfaceGenericApplicationListenerExtended variant of the standardApplicationListenerinterface, exposing further metadata such as the supported event and source type.interfaceSmartApplicationListenerExtended variant of the standardApplicationListenerinterface, exposing further metadata such as the supported event and source type.Classes in org.springframework.context.event that implement Ordered Modifier and Type Class Description classApplicationListenerMethodAdapterGenericApplicationListeneradapter that delegates the processing of an event to anEventListenerannotated method.classDefaultEventListenerFactoryDefaultEventListenerFactoryimplementation that supports the regularEventListenerannotation.classGenericApplicationListenerAdapterGenericApplicationListeneradapter that determines supported event types through introspecting the generically declared type of the target listener.classSourceFilteringListenerApplicationListenerdecorator that filters events from a specified event source, invoking its delegate listener for matchingApplicationEventobjects only.Uses of Ordered in org.springframework.context.support
Classes in org.springframework.context.support that implement Ordered Modifier and Type Class Description classPropertySourcesPlaceholderConfigurerSpecialization ofPlaceholderConfigurerSupportthat resolves ${...} placeholders within bean definition property values and@Valueannotations against the current SpringEnvironmentand its set ofPropertySources.Uses of Ordered in org.springframework.context.weaving
Classes in org.springframework.context.weaving that implement Ordered Modifier and Type Class Description classAspectJWeavingEnablerPost-processor that registers AspectJ'sClassPreProcessorAgentAdapterwith the Spring application context's defaultLoadTimeWeaver.Uses of Ordered in org.springframework.core
Subinterfaces of Ordered in org.springframework.core Modifier and Type Interface Description interfacePriorityOrderedUses of Ordered in org.springframework.dao.annotation
Classes in org.springframework.dao.annotation that implement Ordered Modifier and Type Class Description classPersistenceExceptionTranslationAdvisorSpring AOP exception translation aspect for use at Repository or DAO layer level.classPersistenceExceptionTranslationPostProcessorBean post-processor that automatically applies persistence exception translation to any bean marked with Spring's @Repositoryannotation, adding a correspondingPersistenceExceptionTranslationAdvisorto the exposed proxy (either an existing AOP proxy or a newly generated proxy that implements all of the target's interfaces).Uses of Ordered in org.springframework.jms.annotation
Classes in org.springframework.jms.annotation that implement Ordered Modifier and Type Class Description classJmsListenerAnnotationBeanPostProcessorBean post-processor that registers methods annotated withJmsListenerto be invoked by a JMS message listener container created under the cover by aJmsListenerContainerFactoryaccording to the attributes of the annotation.Uses of Ordered in org.springframework.messaging.handler
Subinterfaces of Ordered in org.springframework.messaging.handler Modifier and Type Interface Description interfaceMessagingAdviceBeanRepresents a Spring-managed bean with cross-cutting functionality to be applied to one or more Spring beans with annotation-based message handling methods.Uses of Ordered in org.springframework.messaging.simp.user
Classes in org.springframework.messaging.simp.user that implement Ordered Modifier and Type Class Description classMultiServerUserRegistrySimpUserRegistrythat looks up users in a "local" user registry as well as a set of "remote" user registries.Uses of Ordered in org.springframework.orm.hibernate5
Classes in org.springframework.orm.hibernate5 that implement Ordered Modifier and Type Class Description classSpringFlushSynchronizationSimple synchronization adapter that propagates aflush()call to the underlying Hibernate Session.classSpringSessionSynchronizationCallback for resource cleanup at the end of a Spring-managed transaction for a pre-bound Hibernate Session.Uses of Ordered in org.springframework.orm.jpa.support
Classes in org.springframework.orm.jpa.support that implement Ordered Modifier and Type Class Description classPersistenceAnnotationBeanPostProcessorBeanPostProcessor that processesPersistenceUnitandPersistenceContextannotations, for injection of the corresponding JPA resourcesEntityManagerFactoryandEntityManager.Uses of Ordered in org.springframework.scheduling.annotation
Classes in org.springframework.scheduling.annotation that implement Ordered Modifier and Type Class Description classAnnotationAsyncExecutionInterceptorSpecialization ofAsyncExecutionInterceptorthat delegates method execution to anExecutorbased on theAsyncannotation.classAsyncAnnotationAdvisorAdvisor that activates asynchronous method execution through theAsyncannotation.classAsyncAnnotationBeanPostProcessorBean post-processor that automatically applies asynchronous invocation behavior to any bean that carries theAsyncannotation at class or method-level by adding a correspondingAsyncAnnotationAdvisorto the exposed proxy (either an existing AOP proxy or a newly generated proxy that implements all of the target's interfaces).classScheduledAnnotationBeanPostProcessorBean post-processor that registers methods annotated with @Scheduledto be invoked by aTaskScheduleraccording to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation.Uses of Ordered in org.springframework.scripting.support
Classes in org.springframework.scripting.support that implement Ordered Modifier and Type Class Description classScriptFactoryPostProcessorBeanPostProcessorthat handlesScriptFactorydefinitions, replacing each factory with the actual scripted Java object generated by it.Uses of Ordered in org.springframework.test.context.event
Classes in org.springframework.test.context.event that implement Ordered Modifier and Type Class Description classEventPublishingTestExecutionListenerTestExecutionListenerthat publishes test execution events to theApplicationContextfor the currently executing test.Uses of Ordered in org.springframework.test.context.jdbc
Classes in org.springframework.test.context.jdbc that implement Ordered Modifier and Type Class Description classSqlScriptsTestExecutionListenerTestExecutionListenerthat provides support for executing SQLscriptsand inlinedstatementsconfigured via the@Sqlannotation.Uses of Ordered in org.springframework.test.context.support
Classes in org.springframework.test.context.support that implement Ordered Modifier and Type Class Description classAbstractDirtiesContextTestExecutionListenerAbstract base class forTestExecutionListenerimplementations that provide support for marking theApplicationContextassociated with a test as dirty for both test classes and test methods annotated with the@DirtiesContextannotation.classAbstractTestExecutionListenerAbstract ordered implementation of theTestExecutionListenerAPI.classDependencyInjectionTestExecutionListenerTestExecutionListenerwhich provides support for dependency injection and initialization of test instances.classDirtiesContextBeforeModesTestExecutionListenerTestExecutionListenerwhich provides support for marking theApplicationContextassociated with a test as dirty for both test classes and test methods annotated with the@DirtiesContextannotation.classDirtiesContextTestExecutionListenerTestExecutionListenerwhich provides support for marking theApplicationContextassociated with a test as dirty for both test classes and test methods annotated with the@DirtiesContextannotation.Uses of Ordered in org.springframework.test.context.transaction
Classes in org.springframework.test.context.transaction that implement Ordered Modifier and Type Class Description classTransactionalTestExecutionListenerTestExecutionListenerthat provides support for executing tests within test-managed transactions by honoring Spring's@Transactionalannotation.Uses of Ordered in org.springframework.test.context.web
Classes in org.springframework.test.context.web that implement Ordered Modifier and Type Class Description classServletTestExecutionListenerTestExecutionListenerwhich provides mock Servlet API support toWebApplicationContextsloaded by the Spring TestContext Framework.Uses of Ordered in org.springframework.transaction.event
Classes in org.springframework.transaction.event that implement Ordered Modifier and Type Class Description classTransactionalEventListenerFactoryEventListenerFactoryimplementation that handlesTransactionalEventListenerannotated methods.Uses of Ordered in org.springframework.transaction.interceptor
Classes in org.springframework.transaction.interceptor that implement Ordered Modifier and Type Class Description classBeanFactoryTransactionAttributeSourceAdvisorAdvisor driven by aTransactionAttributeSource, used to include a transaction advice bean for methods that are transactional.classTransactionAttributeSourceAdvisorAdvisor driven by aTransactionAttributeSource, used to include aTransactionInterceptoronly for methods that are transactional.Uses of Ordered in org.springframework.transaction.support
Classes in org.springframework.transaction.support that implement Ordered Modifier and Type Class Description classTransactionSynchronizationAdapterSimpleTransactionSynchronizationadapter containing empty method implementations, for easier overriding of single methods.Uses of Ordered in org.springframework.validation.beanvalidation
Classes in org.springframework.validation.beanvalidation that implement Ordered Modifier and Type Class Description classMethodValidationPostProcessorA convenientBeanPostProcessorimplementation that delegates to a JSR-303 provider for performing method-level validation on annotated methods.Uses of Ordered in org.springframework.web.method
Classes in org.springframework.web.method that implement Ordered Modifier and Type Class Description classControllerAdviceBeanEncapsulates information about an@ControllerAdviceSpring-managed bean without necessarily requiring it to be instantiated.Uses of Ordered in org.springframework.web.reactive.function.server.support
Classes in org.springframework.web.reactive.function.server.support that implement Ordered Modifier and Type Class Description classRouterFunctionMappingHandlerMappingimplementation that supportsRouterFunctions.classServerResponseResultHandlerHandlerResultHandlerimplementation that supportsServerResponses.Uses of Ordered in org.springframework.web.reactive.handler
Classes in org.springframework.web.reactive.handler that implement Ordered Modifier and Type Class Description classAbstractHandlerMappingAbstract base class forHandlerMappingimplementations.classAbstractUrlHandlerMappingAbstract base class for URL-mappedHandlerMappingimplementations.classSimpleUrlHandlerMappingImplementation of theHandlerMappinginterface to map from URLs to request handler beans.Uses of Ordered in org.springframework.web.reactive.result
Classes in org.springframework.web.reactive.result that implement Ordered Modifier and Type Class Description classHandlerResultHandlerSupportBase class forHandlerResultHandlerwith support for content negotiation and access to aReactiveAdapterregistry.Uses of Ordered in org.springframework.web.reactive.result.method
Classes in org.springframework.web.reactive.result.method that implement Ordered Modifier and Type Class Description classAbstractHandlerMethodMapping<T>Abstract base class forHandlerMappingimplementations that define a mapping between a request and aHandlerMethod.classRequestMappingInfoHandlerMappingAbstract base class for classes for whichRequestMappingInfodefines the mapping between a request and a handler method.Uses of Ordered in org.springframework.web.reactive.result.method.annotation
Classes in org.springframework.web.reactive.result.method.annotation that implement Ordered Modifier and Type Class Description classAbstractMessageWriterResultHandlerAbstract base class for result handlers that handle return values by writing to the response withHttpMessageWriter.classRequestMappingHandlerMappingAn extension ofRequestMappingInfoHandlerMappingthat createsRequestMappingInfoinstances from class-level and method-level@RequestMappingannotations.classResponseBodyResultHandlerHandlerResultHandlerthat handles return values from methods annotated with@ResponseBodywriting to the body of the request or response with anHttpMessageWriter.classResponseEntityResultHandlerHandlesHttpEntityandResponseEntityreturn values.Uses of Ordered in org.springframework.web.reactive.result.view
Classes in org.springframework.web.reactive.result.view that implement Ordered Modifier and Type Class Description classUrlBasedViewResolverAViewResolverthat allows direct resolution of symbolic view names to URLs without explicit mapping definitions.classViewResolutionResultHandlerHandlerResultHandlerthat encapsulates the view resolution algorithm supporting the following return types:Voidor no value -- default view nameString-- view name unless@ModelAttribute-annotatedView-- View to render withModel-- attributes to add to the modelMap-- attributes to add to the modelRendering-- use case driven API for view resolution@ModelAttribute-- attribute for the model Non-simple value -- attribute for the modelclassViewResolverSupportBase class forViewResolverimplementations with shared properties.Uses of Ordered in org.springframework.web.reactive.result.view.freemarker
Classes in org.springframework.web.reactive.result.view.freemarker that implement Ordered Modifier and Type Class Description classFreeMarkerViewResolverAViewResolverfor resolvingFreeMarkerViewinstances, i.e.Uses of Ordered in org.springframework.web.reactive.result.view.script
Classes in org.springframework.web.reactive.result.view.script that implement Ordered Modifier and Type Class Description classScriptTemplateViewResolverConvenience subclass ofUrlBasedViewResolverthat supportsScriptTemplateViewand custom subclasses of it.Uses of Ordered in org.springframework.web.servlet.function.support
Classes in org.springframework.web.servlet.function.support that implement Ordered Modifier and Type Class Description classHandlerFunctionAdapterHandlerAdapterimplementation that supportsHandlerFunctions.classRouterFunctionMappingHandlerMappingimplementation that supportsRouterFunctions.Uses of Ordered in org.springframework.web.servlet.handler
Classes in org.springframework.web.servlet.handler that implement Ordered Modifier and Type Class Description classAbstractDetectingUrlHandlerMappingAbstract implementation of theHandlerMappinginterface, detecting URL mappings for handler beans through introspection of all defined beans in the application context.classAbstractHandlerExceptionResolverAbstract base class forHandlerExceptionResolverimplementations.classAbstractHandlerMappingAbstract base class forHandlerMappingimplementations.classAbstractHandlerMethodExceptionResolverAbstract base class forHandlerExceptionResolverimplementations that support handling exceptions from handlers of typeHandlerMethod.classAbstractHandlerMethodMapping<T>Abstract base class forHandlerMappingimplementations that define a mapping between a request and aHandlerMethod.classAbstractUrlHandlerMappingAbstract base class for URL-mappedHandlerMappingimplementations.classBeanNameUrlHandlerMappingImplementation of theHandlerMappinginterface that maps from URLs to beans with names that start with a slash ("/"), similar to how Struts maps URLs to action names.classHandlerExceptionResolverCompositeAHandlerExceptionResolverthat delegates to a list of otherHandlerExceptionResolvers.classSimpleMappingExceptionResolverHandlerExceptionResolverimplementation that allows for mapping exception class names to view names, either for a set of given handlers or for all handlers in the DispatcherServlet.classSimpleUrlHandlerMappingImplementation of theHandlerMappinginterface that maps from URLs to request handler beans.Uses of Ordered in org.springframework.web.servlet.mvc.annotation
Classes in org.springframework.web.servlet.mvc.annotation that implement Ordered Modifier and Type Class Description classResponseStatusExceptionResolverAHandlerExceptionResolverthat uses the@ResponseStatusannotation to map exceptions to HTTP status codes.Uses of Ordered in org.springframework.web.servlet.mvc.method
Classes in org.springframework.web.servlet.mvc.method that implement Ordered Modifier and Type Class Description classAbstractHandlerMethodAdapterAbstract base class forHandlerAdapterimplementations that support handlers of typeHandlerMethod.classRequestMappingInfoHandlerMappingAbstract base class for classes for whichRequestMappingInfodefines the mapping between a request and a handler method.Uses of Ordered in org.springframework.web.servlet.mvc.method.annotation
Classes in org.springframework.web.servlet.mvc.method.annotation that implement Ordered Modifier and Type Class Description classExceptionHandlerExceptionResolverAnAbstractHandlerMethodExceptionResolverthat resolves exceptions through@ExceptionHandlermethods.classRequestMappingHandlerAdapterclassRequestMappingHandlerMappingCreatesRequestMappingInfoinstances from type and method-level@RequestMappingannotations in@Controllerclasses.Uses of Ordered in org.springframework.web.servlet.mvc.support
Classes in org.springframework.web.servlet.mvc.support that implement Ordered Modifier and Type Class Description classDefaultHandlerExceptionResolverThe default implementation of theHandlerExceptionResolverinterface, resolving standard Spring MVC exceptions and translating them to corresponding HTTP status codes.Uses of Ordered in org.springframework.web.servlet.view
Classes in org.springframework.web.servlet.view that implement Ordered Modifier and Type Class Description classAbstractTemplateViewResolverAbstract base class for template view resolvers, in particular for FreeMarker views.classBeanNameViewResolverA simple implementation ofViewResolverthat interprets a view name as a bean name in the current application context, i.e.classContentNegotiatingViewResolverImplementation ofViewResolverthat resolves a view based on the request file name orAcceptheader.classInternalResourceViewResolverConvenient subclass ofUrlBasedViewResolverthat supportsInternalResourceView(i.e.classResourceBundleViewResolverAViewResolverimplementation that uses bean definitions in aResourceBundle, specified by the bundle basename.classUrlBasedViewResolverSimple implementation of theViewResolverinterface, allowing for direct resolution of symbolic view names to URLs, without explicit mapping definitions.classViewResolverCompositeAViewResolverthat delegates to others.classXmlViewResolverAViewResolverimplementation that uses bean definitions in a dedicated XML file for view definitions, specified by resource location.Uses of Ordered in org.springframework.web.servlet.view.freemarker
Classes in org.springframework.web.servlet.view.freemarker that implement Ordered Modifier and Type Class Description classFreeMarkerViewResolverConvenience subclass ofUrlBasedViewResolverthat supportsFreeMarkerView(i.e.Uses of Ordered in org.springframework.web.servlet.view.groovy
Classes in org.springframework.web.servlet.view.groovy that implement Ordered Modifier and Type Class Description classGroovyMarkupViewResolverConvenience subclass of @link AbstractTemplateViewResolver} that supportsGroovyMarkupView(i.e.Uses of Ordered in org.springframework.web.servlet.view.script
Classes in org.springframework.web.servlet.view.script that implement Ordered Modifier and Type Class Description classScriptTemplateViewResolverConvenience subclass ofUrlBasedViewResolverthat supportsScriptTemplateViewand custom subclasses of it.Uses of Ordered in org.springframework.web.servlet.view.tiles3
Classes in org.springframework.web.servlet.view.tiles3 that implement Ordered Modifier and Type Class Description classTilesViewResolverConvenience subclass ofUrlBasedViewResolverthat supportsTilesView(i.e.Uses of Ordered in org.springframework.web.servlet.view.xslt
Classes in org.springframework.web.servlet.view.xslt that implement Ordered Modifier and Type Class Description classXsltViewResolverViewResolverimplementation that resolves instances ofXsltViewby translating the supplied view name into the URL of the XSLT stylesheet.Uses of Ordered in org.springframework.web.socket.messaging
Classes in org.springframework.web.socket.messaging that implement Ordered Modifier and Type Class Description classDefaultSimpUserRegistryA default implementation ofSimpUserRegistrythat relies onAbstractSubProtocolEventapplication context events to keep track of connected users and their subscriptions.Uses of Ordered in org.springframework.web.socket.server.support
Classes in org.springframework.web.socket.server.support that implement Ordered Modifier and Type Class Description classWebSocketHandlerMappingAn extension ofSimpleUrlHandlerMappingthat is also aSmartLifecyclecontainer and propagates start and stop calls to any handlers that implementLifecycle.