Greetings, I have created a ServletContextListener that sets a Bean in the application scope. This Bean contains 2 list of Months... and these lists contain LabelValueBeans.
My uncertainty is on the best way to get my JSP to use the appropriate List depending on the locale. JSP code: <html:select property="toMonth" styleClass="dropdowns"> <html:optionsCollection name="ApplicationBean" property="months" label="label" value="value"/> </html:select> Option One: Do I pass as a parameter to the months method the Locale? Any other suggestions would be appreciated. :) - Glenn