(Quick Reference)

displayMessage

Call this method in controllers to set the display message for the current request.

The view can render this message using the displayMessage tag.

There are two forms of the method:

displayMessage(String msg) - set the message string (or message code) displayMessage(Map args) - set the message arguments (or message code)

The args supported are:

NamePurpose
textThe text of the label, or an i18n code to resolve to use as the text
textArgsOptional arguments to pass when creating the i18n message text
typeOptional message type indicator i.e. 'warning', 'error', 'info', 'debug'

This method stores the message information in the current request scope.