public final class Messages extends Object
FacesMessage
. It also offers the
possibility to set a custom message resolver so that you can control the way how messages are been resolved. You can
for example supply an implementation wherein the message is been treated as for example a resource bundle key.
Here's an example:
Messages.setResolver(new Messages.Resolver() { private static final String BASE_NAME = "com.example.i18n.messages"; public String getMessage(String message, Object... params) { ResourceBundle bundle = ResourceBundle.getBundle(BASE_NAME, Faces.getLocale()); if (bundle.containsKey(message)) { message = bundle.getString(message); } return MessageFormat.format(message, params); } });
There is already a default resolver which just delegates the message and the parameters straight to
MessageFormat.format(String, Object...)
. Note that the resolver can be set only once. It's recommend to do
it early during webapp's startup, for example with a ServletContextListener
, or a Servlet 3.0
ServletContainerInitializer
, or an eagerly initialized ApplicationScoped
ManagedBean
.
Note that all of those shortcut methods by design only sets the message summary and ignores the message detail (it
is not possible to offer varargs to parameterize both the summary and the detail). The message summary is
exactly the information which is by default displayed in the <h:message(s)>
, while the detail is
by default only displayed when you explicitly set the showDetail="true"
attribute.
To create a FacesMessage
with a message detail as well, use the Messages.Message
builder as you can obtain by
create(String, Object...)
.
Modifier and Type | Class and Description |
---|---|
static class |
Messages.Message
Faces message builder.
|
static interface |
Messages.Resolver
The message resolver allows the developers to change the way how messages are resolved.
|
Modifier and Type | Method and Description |
---|---|
static void |
add(FacesMessage.Severity severity,
String clientId,
String message,
Object... params)
Add a faces message of the given severity to the given client ID, with the given message body which is formatted
with the given parameters.
|
static void |
add(String clientId,
FacesMessage message)
Add the given faces message to the given client ID.
|
static void |
addError(String clientId,
String message,
Object... params)
Add an ERROR faces message to the given client ID, with the given message body which is formatted with the given
parameters.
|
static void |
addFatal(String clientId,
String message,
Object... params)
Add a FATAL faces message to the given client ID, with the given message body which is formatted with the given
parameters.
|
static void |
addFlash(FacesMessage.Severity severity,
String clientId,
String message,
Object... params)
Add a flash scoped faces message of the given severity to the given client ID, with the given message body which
is formatted with the given parameters.
|
static void |
addFlash(String clientId,
FacesMessage message)
Add a flash scoped faces message to the given client ID.
|
static void |
addFlashError(String clientId,
String message,
Object... params)
Add a flash scoped ERROR faces message to the given client ID, with the given message body which is formatted
with the given parameters.
|
static void |
addFlashFatal(String clientId,
String message,
Object... params)
Add a flash scoped FATAL faces message to the given client ID, with the given message body which is formatted
with the given parameters.
|
static void |
addFlashGlobal(FacesMessage message)
Add a flash scoped global faces message.
|
static void |
addFlashGlobalError(String message,
Object... params)
Add a flash scoped global ERROR faces message, with the given message body which is formatted with the given
parameters.
|
static void |
addFlashGlobalFatal(String message,
Object... params)
Add a flash scoped global FATAL faces message, with the given message body which is formatted with the given
parameters.
|
static void |
addFlashGlobalInfo(String message,
Object... params)
Add a flash scoped global INFO faces message, with the given message body which is formatted with the given
parameters.
|
static void |
addFlashGlobalWarn(String message,
Object... params)
Add a flash scoped global WARN faces message, with the given message body which is formatted with the given
parameters.
|
static void |
addFlashInfo(String clientId,
String message,
Object... params)
Add a flash scoped INFO faces message to the given client ID, with the given message body which is formatted
with the given parameters.
|
static void |
addFlashWarn(String clientId,
String message,
Object... params)
Add a flash scoped WARN faces message to the given client ID, with the given message body which is formatted
with the given parameters.
|
static void |
addGlobal(FacesMessage.Severity severity,
String message,
Object... params)
Add a global faces message of the given severity, with the given message body which is formatted with the given
parameters.
|
static void |
addGlobal(FacesMessage message)
Add a global faces message.
|
static void |
addGlobalError(String message,
Object... params)
Add a global ERROR faces message, with the given message body which is formatted with the given parameters.
|
static void |
addGlobalFatal(String message,
Object... params)
Add a global FATAL faces message, with the given message body which is formatted with the given parameters.
|
static void |
addGlobalInfo(String message,
Object... params)
Add a global INFO faces message, with the given message body which is formatted with the given parameters.
|
static void |
addGlobalWarn(String message,
Object... params)
Add a global WARN faces message, with the given message body which is formatted with the given parameters.
|
static void |
addInfo(String clientId,
String message,
Object... params)
Add an INFO faces message to the given client ID, with the given message body which is formatted with the given
parameters.
|
static void |
addWarn(String clientId,
String message,
Object... params)
Add a WARN faces message to the given client ID, with the given message body which is formatted with the given
parameters.
|
static FacesMessage |
create(FacesMessage.Severity severity,
String message,
Object... params)
Create a faces message of the given severity with the given message body which is formatted with the given
parameters.
|
static Messages.Message |
create(String message,
Object... params)
Create a faces message with the default INFO severity and the given message body which is formatted with the
given parameters as summary message.
|
static FacesMessage |
createError(String message,
Object... params)
Create an ERROR faces message with the given message body which is formatted with the given parameters.
|
static FacesMessage |
createFatal(String message,
Object... params)
Create a FATAL faces message with the given message body which is formatted with the given parameters.
|
static FacesMessage |
createInfo(String message,
Object... params)
Create an INFO faces message with the given message body which is formatted with the given parameters.
|
static FacesMessage |
createWarn(String message,
Object... params)
Create a WARN faces message with the given message body which is formatted with the given parameters.
|
static void |
setResolver(Messages.Resolver resolver)
Set the custom message resolver.
|
public static void setResolver(Messages.Resolver resolver)
ServletContextListener
, or a Servlet 3.0 ServletContainerInitializer
, or
an eagerly initialized ApplicationScoped
ManagedBean
.resolver
- The custom message resolver.IllegalStateException
- When the resolver has already been set.public static Messages.Message create(String message, Object... params)
Messages.Message.detail(String, Object...)
.
To change the default INFO severity, use Messages.Message.warn()
, Messages.Message.error()
, or
Messages.Message.fatal()
. To make it a flash message, use Messages.Message.flash()
. To finally add it to the faces
context, use either Messages.Message.add(String)
to add it for a specific client ID, or Messages.Message.add()
to
add it as a global message.message
- The message body.params
- The message format parameters, if any.Messages.Message
builder.createInfo(String, Object...)
,
Messages.Resolver.getMessage(String, Object...)
public static FacesMessage create(FacesMessage.Severity severity, String message, Object... params)
ConverterException
or a
ValidatorException
.severity
- The severity of the faces message.message
- The message body.params
- The message format parameters, if any.Messages.Resolver.getMessage(String, Object...)
public static FacesMessage createInfo(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
public static FacesMessage createWarn(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
public static FacesMessage createError(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
public static FacesMessage createFatal(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
public static void add(String clientId, FacesMessage message)
null
, it becomes a
global faces message. This can be filtered in a <h:messages globalOnly="true">
.clientId
- The client ID to add the faces message for.message
- The faces message.FacesContext.addMessage(String, FacesMessage)
public static void add(FacesMessage.Severity severity, String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.severity
- The severity of the faces message.message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
,
add(String, FacesMessage)
public static void addInfo(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createInfo(String, Object...)
,
add(String, FacesMessage)
public static void addWarn(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createWarn(String, Object...)
,
add(String, FacesMessage)
public static void addError(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createError(String, Object...)
,
add(String, FacesMessage)
public static void addFatal(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createFatal(String, Object...)
,
add(String, FacesMessage)
public static void addGlobal(FacesMessage message)
null
.message
- The global faces message.add(String, FacesMessage)
public static void addGlobal(FacesMessage.Severity severity, String message, Object... params)
severity
- The severity of the global faces message.message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
,
addGlobal(FacesMessage)
public static void addGlobalInfo(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createInfo(String, Object...)
,
addGlobal(FacesMessage)
public static void addGlobalWarn(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createWarn(String, Object...)
,
addGlobal(FacesMessage)
public static void addGlobalError(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createError(String, Object...)
,
addGlobal(FacesMessage)
public static void addGlobalFatal(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createFatal(String, Object...)
,
addGlobal(FacesMessage)
public static void addFlash(String clientId, FacesMessage message)
NOTE: the flash scope has in early Mojarra versions however some pretty peculiar problems. In older versions, the messages are remembered too long, or they are only displayed after refresh, or they are not displayed when the next request is on a different path. Only since Mojarra 2.1.14, all known flash scope problems are solved.
clientId
- The client ID to add the flash scoped faces message for.message
- The faces message.Flash.setKeepMessages(boolean)
,
add(String, FacesMessage)
public static void addFlash(FacesMessage.Severity severity, String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.severity
- The severity of the faces message.message
- The message body.params
- The message format parameters, if any.create(javax.faces.application.FacesMessage.Severity, String, Object...)
,
addFlash(String, FacesMessage)
public static void addFlashInfo(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createInfo(String, Object...)
,
addFlash(String, FacesMessage)
public static void addFlashWarn(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createWarn(String, Object...)
,
addFlash(String, FacesMessage)
public static void addFlashError(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createError(String, Object...)
,
addFlash(String, FacesMessage)
public static void addFlashFatal(String clientId, String message, Object... params)
clientId
- The client ID to add the faces message for.message
- The message body.params
- The message format parameters, if any.createFatal(String, Object...)
,
addFlash(String, FacesMessage)
public static void addFlashGlobal(FacesMessage message)
null
. Use this
when you need to display the message after a redirect.message
- The global faces message.addFlash(String, FacesMessage)
public static void addFlashGlobalInfo(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createInfo(String, Object...)
,
addFlashGlobal(FacesMessage)
public static void addFlashGlobalWarn(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createWarn(String, Object...)
,
addFlashGlobal(FacesMessage)
public static void addFlashGlobalError(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createError(String, Object...)
,
addFlashGlobal(FacesMessage)
public static void addFlashGlobalFatal(String message, Object... params)
message
- The message body.params
- The message format parameters, if any.createFatal(String, Object...)
,
addFlashGlobal(FacesMessage)