Is there analogue of Django Messages Framework (or RoR flash messages) in Java?
http://docs.djangoproject.com/en/dev/ref/contrib/messages/
I want to show a message for user one time.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Using Grails, as an example, it is easily possible using the flash scope (like this question denotes : Grails flash scope).
However, notice that any framework would allow you to do that, as that kind of scope is simply an extension of the request : by putting your message in the request attributes, you’ll have it displayed only for the currently processed request.