Struts2 actionError and actionMessage.
Download code and jars : Link. File : index.jsp <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <%@ taglib prefix="s" uri="/struts-tags"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Index page</title> </head> <body> <center> <s:if test="hasActionErrors()"> <div> <span style="text-align: center; color: red; font-size: 17px;"><s:actionerror /></span> </div> </s:if> <s:if test="hasActionMessages()"> <div> <span style="text-align: center; color: green; font-size: 17px;"><s:acti...