Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.
The following page has been changed by Paul Benedict: http://wiki.apache.org/struts/Struts14Roadmap ------------------------------------------------------------------------------ The 1.4 release will focus on being a "bridge" to 2.1 by adopting some of the conventions and ideas to make the user's codebase look similar (if not identical) to 2.x actions. This will mainly benefit users who already have large 1.x applications, but cannot afford to refactor and replace previous development. - == Actions == + == S2-like Actions == + * Adopt the S2 "public String execute() throws Exception" signature. + * Provide the ActionContext to the actions (undetermined method). + * Place the SUCCESS, INPUT, etc. constants in Action + * How to determine the model object that would fill out the parameters of the result string? + + == POJO Actions == + * No longer mandatory to require a subclass of Action + * POJO Actions will simply be proxied by an ActionProxy + * Allow actions to be prototypical + == I18N == + * Shared subproject of localization strategies + * S1/S2/Tiles will have unique adapters to use the strategies + * Will refactor [https://issues.apache.org/struts/browse/STR-2897 STR-2897] for this purpose + == Tiles == + * Tiles2 integration +