CURRENT - 3.0.1 - SNAPSHOT
3.0.0 - 2022 - OCT - 17
Changed the signature of Action to
ActionCommand execute(ActionMapping mapping, HttpServletRequest req, HttpServletResponse res) throws Exception;
- Dropped support for bean auto-population (due to demand).
- Updated dependency versions, lowered overall footprint.
1.4.0 - 2012 - OCT - 24
Please do not use
This release was needed for maven release purpose to resolve moskito-core <- ano-maf <- moskito-webui problem.
We will release 1.4.1 shortly after moskito 2.0.0 release.
1.3.0 - 2012 - SEP - 02
- Added error handling.
- Added not found handling.
- Added annotations.
1.2.1 2012 - MAI - 12
- ActionFactory is now configurable (via web.xml) and overwrite able.
1.2.0 2012 - FEB - 06
- Refactored ActionMappings to be instanced, this way multiple MAFFilters do not share configuration.
- Added maf/showMappings as internal mapping, that allows to inspect configuration of a running system.
- Updated dependencies and parent (1.12).
1.1.0 - 2011-JUL-02
- added native support for redirects via CommandRedirect.
- refactored ActionForward into ActionCommand, CommandForward and CommandRedirect.
- added support for dynamic redirects:
return ((CommandRedirect)mapping.findCommand("redirect")).addParameter("channelname", channelname);
or
return mapping.redirect().addParameter("channelname", channelname);
- added shortcuts for common command names, like "success", "error", "redirect" or "dialog":
return mapping.success();
instead of
return mapping.findCommand("success");