Uses of Class
org.springframework.context.NoSuchMessageException
Packages that use NoSuchMessageException 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.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 NoSuchMessageException in org.springframework.context
Methods in org.springframework.context that throw NoSuchMessageException Modifier and Type Method Description StringMessageSource. getMessage(String code, Object[] args, Locale locale)Try to resolve the message.StringMessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)Try to resolve the message using all the attributes contained within theMessageSourceResolvableargument that was passed in.Uses of NoSuchMessageException in org.springframework.context.support
Methods in org.springframework.context.support that throw NoSuchMessageException Modifier and Type Method Description StringAbstractApplicationContext. getMessage(String code, Object[] args, Locale locale)StringAbstractApplicationContext. getMessage(MessageSourceResolvable resolvable, Locale locale)StringAbstractMessageSource. getMessage(String code, Object[] args, Locale locale)StringAbstractMessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)StringDelegatingMessageSource. getMessage(String code, Object[] args, Locale locale)StringDelegatingMessageSource. getMessage(MessageSourceResolvable resolvable, Locale locale)StringMessageSourceAccessor. getMessage(String code)Retrieve the message for the given code and the default Locale.StringMessageSourceAccessor. getMessage(String code, Object[] args)Retrieve the message for the given code and the default Locale.StringMessageSourceAccessor. getMessage(String code, Object[] args, Locale locale)Retrieve the message for the given code and the given Locale.StringMessageSourceAccessor. getMessage(String code, Locale locale)Retrieve the message for the given code and the given Locale.StringMessageSourceAccessor. getMessage(MessageSourceResolvable resolvable)Retrieve the given MessageSourceResolvable (e.g.StringMessageSourceAccessor. getMessage(MessageSourceResolvable resolvable, Locale locale)Retrieve the given MessageSourceResolvable (e.g.Uses of NoSuchMessageException in org.springframework.web.reactive.result.view
Methods in org.springframework.web.reactive.result.view that throw NoSuchMessageException Modifier and Type Method Description StringRequestContext. getMessage(String code)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(String code, Object[] args)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(String code, Object[] args, boolean htmlEscape)Retrieve the message for the given code.StringRequestContext. getMessage(String code, List<?> args)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(MessageSourceResolvable resolvable)Retrieve the given MessageSourceResolvable (e.g.StringRequestContext. getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)Retrieve the given MessageSourceResolvable (e.g.Uses of NoSuchMessageException in org.springframework.web.servlet.support
Methods in org.springframework.web.servlet.support that throw NoSuchMessageException Modifier and Type Method Description StringRequestContext. getMessage(String code)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(String code, Object[] args)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(String code, Object[] args, boolean htmlEscape)Retrieve the message for the given code.StringRequestContext. getMessage(String code, List<?> args)Retrieve the message for the given code, using the "defaultHtmlEscape" setting.StringRequestContext. getMessage(MessageSourceResolvable resolvable)Retrieve the given MessageSourceResolvable (e.g.StringRequestContext. getMessage(MessageSourceResolvable resolvable, boolean htmlEscape)Retrieve the given MessageSourceResolvable (e.g.StringRequestContext. getThemeMessage(String code)Retrieve the theme message for the given code.StringRequestContext. getThemeMessage(String code, Object[] args)Retrieve the theme message for the given code.StringRequestContext. getThemeMessage(String code, List<?> args)Retrieve the theme message for the given code.StringRequestContext. getThemeMessage(MessageSourceResolvable resolvable)Retrieve the given MessageSourceResolvable in the current theme.Uses of NoSuchMessageException in org.springframework.web.servlet.tags
Methods in org.springframework.web.servlet.tags with parameters of type NoSuchMessageException Modifier and Type Method Description protected StringMessageTag. getNoSuchMessageExceptionDescription(NoSuchMessageException ex)Return default exception message.protected StringThemeTag. getNoSuchMessageExceptionDescription(NoSuchMessageException ex)Return exception message that indicates the current theme.Methods in org.springframework.web.servlet.tags that throw NoSuchMessageException Modifier and Type Method Description protected StringMessageTag. resolveMessage()Resolve the specified message into a concrete message String.