Uses of Interface
org.springframework.context.MessageSourceResolvable
Packages that use MessageSourceResolvable Package Description org.springframework.context This package builds on the beans package to add support for message sources and for the Observer design pattern, and the ability for application objects to obtain resources using a consistent API.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.validation Provides data binding and validation functionality, for usage in business and/or UI layers.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.reactive.result.view Support for result handling through view resolution.org.springframework.web.servlet.support Support classes for Spring's web MVC framework.org.springframework.web.servlet.tags This package contains Spring's JSP standard tag library for JSP 2.0+.Uses of MessageSourceResolvable in org.springframework.context
Methods in org.springframework.context with parameters of type MessageSourceResolvable Modifier and Type Method Description String
MessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)
Try to resolve the message using all the attributes contained within theMessageSourceResolvable
argument that was passed in.Uses of MessageSourceResolvable in org.springframework.context.support
Classes in org.springframework.context.support that implement MessageSourceResolvable Modifier and Type Class Description class
DefaultMessageSourceResolvable
Spring's default implementation of theMessageSourceResolvable
interface.Methods in org.springframework.context.support with parameters of type MessageSourceResolvable Modifier and Type Method Description protected String
AbstractMessageSource. getDefaultMessage(MessageSourceResolvable resolvable, Locale locale)
Get a default message for the givenMessageSourceResolvable
.String
AbstractApplicationContext. getMessage(MessageSourceResolvable resolvable, Locale locale)
String
AbstractMessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)
String
DelegatingMessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)
String
MessageSourceAccessor. getMessage(MessageSourceResolvable resolvable)
Retrieve the given MessageSourceResolvable (e.g.String
MessageSourceAccessor. getMessage(MessageSourceResolvable resolvable, Locale locale)
Retrieve the given MessageSourceResolvable (e.g.Constructors in org.springframework.context.support with parameters of type MessageSourceResolvable Constructor Description DefaultMessageSourceResolvable(MessageSourceResolvable resolvable)
Copy constructor: Create a new instance from another resolvable.Uses of MessageSourceResolvable in org.springframework.validation
Classes in org.springframework.validation that implement MessageSourceResolvable Modifier and Type Class Description class
FieldError
Encapsulates a field error, that is, a reason for rejecting a specific field value.class
ObjectError
Encapsulates an object error, that is, a global reason for rejecting an object.Uses of MessageSourceResolvable in org.springframework.validation.beanvalidation
Methods in org.springframework.validation.beanvalidation that return MessageSourceResolvable Modifier and Type Method Description protected MessageSourceResolvable
SpringValidatorAdapter. getResolvableField(String objectName, String field)
Build a resolvable wrapper for the specified field, allowing to resolve the field's name in aMessageSource
.Uses of MessageSourceResolvable in org.springframework.web.reactive.result.view
Methods in org.springframework.web.reactive.result.view with parameters of type MessageSourceResolvable Modifier and Type Method Description String
RequestContext. getMessage(MessageSourceResolvable resolvable)
Retrieve the given MessageSourceResolvable (e.g.String
RequestContext. getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)
Retrieve the given MessageSourceResolvable (e.g.Uses of MessageSourceResolvable in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support with parameters of type MessageSourceResolvable Modifier and Type Method Description String
RequestContext. getMessage(MessageSourceResolvable resolvable)
Retrieve the given MessageSourceResolvable (e.g.String
RequestContext. getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)
Retrieve the given MessageSourceResolvable (e.g.String
RequestContext. getThemeMessage(MessageSourceResolvable resolvable)
Retrieve the given MessageSourceResolvable in the current theme.Uses of MessageSourceResolvable in org.springframework.web.servlet.tags
Methods in org.springframework.web.servlet.tags with parameters of type MessageSourceResolvable Modifier and Type Method Description void
MessageTag. setMessage(MessageSourceResolvable message)
Set the MessageSourceResolvable for this tag.