Uses of Interface
org.springframework.context.EmbeddedValueResolverAware
Package
Description
Classes supporting the org.springframework.context package,
such as abstract base classes for ApplicationContext
implementations and a MessageSource implementation.
Formatters for
java.util.Date
properties.Integration with the JSR-310
java.time
package in JDK 8.Formatters for
java.lang.Number
properties.Integration with the JSR-354
javax.money
package.Support classes for the formatting package,
providing common implementations as well as adapters.
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
Support classes for working with annotated RSocket stream handling methods.
Support classes for handling messages from simple messaging protocols
(like STOMP).
Java 5 annotation for asynchronous method execution.
Spring's support for annotation-based transaction demarcation.
AOP-based solution for declarative transaction demarcation.
Infrastructure for annotation-based handler method processing.
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation
package.Support classes for serving static resources.
WebSocket integration for Spring's messaging module.
-
Uses of EmbeddedValueResolverAware in org.springframework.context.support
Modifier and TypeClassDescriptionclass
Convenient base class for components with a need for embedded value resolution (i.e. -
Uses of EmbeddedValueResolverAware in org.springframework.format.datetime
Modifier and TypeClassDescriptionclass
Formats fields annotated with theDateTimeFormat
annotation using aDateFormatter
. -
Uses of EmbeddedValueResolverAware in org.springframework.format.datetime.standard
Modifier and TypeClassDescriptionclass
Formats fields annotated with theDateTimeFormat
annotation using the JSR-310java.time
package in JDK 8. -
Uses of EmbeddedValueResolverAware in org.springframework.format.number
Modifier and TypeClassDescriptionclass
Formats fields annotated with theNumberFormat
annotation. -
Uses of EmbeddedValueResolverAware in org.springframework.format.number.money
Modifier and TypeClassDescriptionclass
FormatsMonetaryAmount
fields annotated with Spring's commonNumberFormat
annotation. -
Uses of EmbeddedValueResolverAware in org.springframework.format.support
Modifier and TypeClassDescriptionclass
A specialization ofFormattingConversionService
configured by default with converters and formatters appropriate for most applications.class
AConversionService
implementation designed to be configured as aFormatterRegistry
.class
A factory providing convenient access to aFormattingConversionService
configured with converters and formatters for common types such as numbers and datetimes. -
Uses of EmbeddedValueResolverAware in org.springframework.messaging.handler.annotation.reactive
Modifier and TypeClassDescriptionclass
Extension ofAbstractMethodMessageHandler
for reactive, non-blocking handling of messages via@MessageMapping
methods. -
Uses of EmbeddedValueResolverAware in org.springframework.messaging.rsocket.annotation.support
Modifier and TypeClassDescriptionclass
Extension ofMessageMappingMessageHandler
for handling RSocket requests with@ConnectMapping
and@MessageMapping
methods. -
Uses of EmbeddedValueResolverAware in org.springframework.messaging.simp.annotation.support
Modifier and TypeClassDescriptionclass
A handler for messages delegating to@MessageMapping
and@SubscribeMapping
annotated methods. -
Uses of EmbeddedValueResolverAware in org.springframework.scheduling.annotation
Modifier and TypeClassDescriptionclass
Bean post-processor that registers methods annotated with@Scheduled
to be invoked by aTaskScheduler
according to the "fixedRate", "fixedDelay", or "cron" expression provided via the annotation. -
Uses of EmbeddedValueResolverAware in org.springframework.transaction.annotation
Modifier and TypeClassDescriptionclass
Implementation of theTransactionAttributeSource
interface for working with transaction metadata in JDK 1.5+ annotation format. -
Uses of EmbeddedValueResolverAware in org.springframework.transaction.interceptor
Modifier and TypeClassDescriptionclass
Abstract implementation ofTransactionAttributeSource
that caches attributes for methods and implements a fallback policy: 1.class
SimpleTransactionAttributeSource
implementation that allows attributes to be stored per method in aMap
.class
SimpleTransactionAttributeSource
implementation that allows attributes to be matched by registered name. -
Uses of EmbeddedValueResolverAware in org.springframework.web.reactive.result.method.annotation
Modifier and TypeClassDescriptionclass
An extension ofRequestMappingInfoHandlerMapping
that createsRequestMappingInfo
instances from class-level and method-level@RequestMapping
annotations. -
Uses of EmbeddedValueResolverAware in org.springframework.web.servlet.mvc.method.annotation
Modifier and TypeClassDescriptionclass
CreatesRequestMappingInfo
instances from type and method-level@RequestMapping
annotations in@Controller
classes. -
Uses of EmbeddedValueResolverAware in org.springframework.web.servlet.resource
Modifier and TypeClassDescriptionclass
HttpRequestHandler
that serves static resources in an optimized way according to the guidelines of Page Speed, YSlow, etc. -
Uses of EmbeddedValueResolverAware in org.springframework.web.socket.messaging
Modifier and TypeClassDescriptionclass
A sub-class ofSimpAnnotationMethodMessageHandler
to provide support forControllerAdvice
with global@MessageExceptionHandler
methods.