MessageSource.getMessage returns null default message as-is (again)

Issue: SPR-16127
This commit is contained in:
Juergen Hoeller
2017-10-31 11:06:42 +01:00
parent 295e3b6a99
commit e5c8dc0d65
8 changed files with 29 additions and 13 deletions

View File

@@ -53,6 +53,7 @@ public interface MessageSource {
* otherwise the default message passed as a parameter * otherwise the default message passed as a parameter
* @see java.text.MessageFormat * @see java.text.MessageFormat
*/ */
@Nullable
String getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale); String getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale);
/** /**

View File

@@ -143,8 +143,7 @@ public abstract class AbstractMessageSource extends MessageSourceSupport impleme
return msg; return msg;
} }
if (defaultMessage == null) { if (defaultMessage == null) {
String fallback = getDefaultMessage(code); return getDefaultMessage(code);
return (fallback != null ? fallback : "");
} }
return renderDefaultMessage(defaultMessage, args, locale); return renderDefaultMessage(defaultMessage, args, locale);
} }
@@ -264,8 +263,7 @@ public abstract class AbstractMessageSource extends MessageSourceSupport impleme
else { else {
// Check parent MessageSource, returning null if not found there. // Check parent MessageSource, returning null if not found there.
// Covers custom MessageSource impls and DelegatingMessageSource. // Covers custom MessageSource impls and DelegatingMessageSource.
String msg = parent.getMessage(code, args, null, locale); return parent.getMessage(code, args, null, locale);
return ("".equals(msg) ? null : msg);
} }
} }
// Not found in parent either. // Not found in parent either.

View File

@@ -54,6 +54,7 @@ public class DelegatingMessageSource extends MessageSourceSupport implements Hie
@Override @Override
@Nullable
public String getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale) { public String getMessage(String code, @Nullable Object[] args, @Nullable String defaultMessage, Locale locale) {
if (this.parentMessageSource != null) { if (this.parentMessageSource != null) {
return this.parentMessageSource.getMessage(code, args, defaultMessage, locale); return this.parentMessageSource.getMessage(code, args, defaultMessage, locale);
@@ -62,7 +63,7 @@ public class DelegatingMessageSource extends MessageSourceSupport implements Hie
return renderDefaultMessage(defaultMessage, args, locale); return renderDefaultMessage(defaultMessage, args, locale);
} }
else { else {
return ""; return null;
} }
} }

View File

@@ -84,7 +84,8 @@ public class MessageSourceAccessor {
* @return the message * @return the message
*/ */
public String getMessage(String code, String defaultMessage) { public String getMessage(String code, String defaultMessage) {
return this.messageSource.getMessage(code, null, defaultMessage, getDefaultLocale()); String msg = this.messageSource.getMessage(code, null, defaultMessage, getDefaultLocale());
return (msg != null ? msg : "");
} }
/** /**
@@ -95,7 +96,8 @@ public class MessageSourceAccessor {
* @return the message * @return the message
*/ */
public String getMessage(String code, String defaultMessage, Locale locale) { public String getMessage(String code, String defaultMessage, Locale locale) {
return this.messageSource.getMessage(code, null, defaultMessage, locale); String msg = this.messageSource.getMessage(code, null, defaultMessage, locale);
return (msg != null ? msg : "");
} }
/** /**
@@ -106,7 +108,8 @@ public class MessageSourceAccessor {
* @return the message * @return the message
*/ */
public String getMessage(String code, @Nullable Object[] args, String defaultMessage) { public String getMessage(String code, @Nullable Object[] args, String defaultMessage) {
return this.messageSource.getMessage(code, args, defaultMessage, getDefaultLocale()); String msg = this.messageSource.getMessage(code, args, defaultMessage, getDefaultLocale());
return (msg != null ? msg : "");
} }
/** /**
@@ -118,7 +121,8 @@ public class MessageSourceAccessor {
* @return the message * @return the message
*/ */
public String getMessage(String code, @Nullable Object[] args, String defaultMessage, Locale locale) { public String getMessage(String code, @Nullable Object[] args, String defaultMessage, Locale locale) {
return this.messageSource.getMessage(code, args, defaultMessage, locale); String msg = this.messageSource.getMessage(code, args, defaultMessage, locale);
return (msg != null ? msg : "");
} }
/** /**

View File

@@ -162,6 +162,7 @@ public class ResourceBundleMessageSourceTests {
assertEquals("Hello, message1", ac.getMessage("hello", args, Locale.ENGLISH)); assertEquals("Hello, message1", ac.getMessage("hello", args, Locale.ENGLISH));
// test default message without and with args // test default message without and with args
assertNull(ac.getMessage(null, null, null, Locale.ENGLISH));
assertEquals("default", ac.getMessage(null, null, "default", Locale.ENGLISH)); assertEquals("default", ac.getMessage(null, null, "default", Locale.ENGLISH));
assertEquals("default", ac.getMessage(null, args, "default", Locale.ENGLISH)); assertEquals("default", ac.getMessage(null, args, "default", Locale.ENGLISH));
assertEquals("{0}, default", ac.getMessage(null, null, "{0}, default", Locale.ENGLISH)); assertEquals("{0}, default", ac.getMessage(null, null, "{0}, default", Locale.ENGLISH));

View File

@@ -282,6 +282,9 @@ public class RequestContext {
*/ */
public String getMessage(String code, @Nullable Object[] args, String defaultMessage, boolean htmlEscape) { public String getMessage(String code, @Nullable Object[] args, String defaultMessage, boolean htmlEscape) {
String msg = this.messageSource.getMessage(code, args, defaultMessage, this.locale); String msg = this.messageSource.getMessage(code, args, defaultMessage, this.locale);
if (msg == null) {
return "";
}
return (htmlEscape ? HtmlUtils.htmlEscape(msg) : msg); return (htmlEscape ? HtmlUtils.htmlEscape(msg) : msg);
} }

View File

@@ -653,6 +653,9 @@ public class RequestContext {
*/ */
public String getMessage(String code, @Nullable Object[] args, String defaultMessage, boolean htmlEscape) { public String getMessage(String code, @Nullable Object[] args, String defaultMessage, boolean htmlEscape) {
String msg = this.webApplicationContext.getMessage(code, args, defaultMessage, getLocale()); String msg = this.webApplicationContext.getMessage(code, args, defaultMessage, getLocale());
if (msg == null) {
return "";
}
return (htmlEscape ? HtmlUtils.htmlEscape(msg) : msg); return (htmlEscape ? HtmlUtils.htmlEscape(msg) : msg);
} }
@@ -732,7 +735,8 @@ public class RequestContext {
* @return the message * @return the message
*/ */
public String getThemeMessage(String code, String defaultMessage) { public String getThemeMessage(String code, String defaultMessage) {
return getTheme().getMessageSource().getMessage(code, null, defaultMessage, getLocale()); String msg = getTheme().getMessageSource().getMessage(code, null, defaultMessage, getLocale());
return (msg != null ? msg : "");
} }
/** /**
@@ -745,7 +749,8 @@ public class RequestContext {
* @return the message * @return the message
*/ */
public String getThemeMessage(String code, @Nullable Object[] args, String defaultMessage) { public String getThemeMessage(String code, @Nullable Object[] args, String defaultMessage) {
return getTheme().getMessageSource().getMessage(code, args, defaultMessage, getLocale()); String msg = getTheme().getMessageSource().getMessage(code, args, defaultMessage, getLocale());
return (msg != null ? msg : "");
} }
/** /**
@@ -758,8 +763,9 @@ public class RequestContext {
* @return the message * @return the message
*/ */
public String getThemeMessage(String code, @Nullable List<?> args, String defaultMessage) { public String getThemeMessage(String code, @Nullable List<?> args, String defaultMessage) {
return getTheme().getMessageSource().getMessage(code, (args != null ? args.toArray() : null), String msg = getTheme().getMessageSource().getMessage(code, (args != null ? args.toArray() : null),
defaultMessage, getLocale()); defaultMessage, getLocale());
return (msg != null ? msg : "");
} }
/** /**

View File

@@ -300,6 +300,7 @@ public class MessageTag extends HtmlEscapingAwareTag implements ArgumentAware {
this.arguments = null; this.arguments = null;
} }
/** /**
* Resolve the specified message into a concrete message String. * Resolve the specified message into a concrete message String.
* The returned message String should be unescaped. * The returned message String should be unescaped.
@@ -322,8 +323,9 @@ public class MessageTag extends HtmlEscapingAwareTag implements ArgumentAware {
if (this.text != null) { if (this.text != null) {
// We have a fallback text to consider. // We have a fallback text to consider.
return messageSource.getMessage( String msg = messageSource.getMessage(
this.code, argumentsArray, this.text, getRequestContext().getLocale()); this.code, argumentsArray, this.text, getRequestContext().getLocale());
return (msg != null ? msg : "");
} }
else { else {
// We have no fallback text to consider. // We have no fallback text to consider.