I'm trying to set the default TimeZone in my application.
<bean id="localeResolver"class="org.springframework.web.servlet.i18n.FixedLocaleResolver">
<property name="defaultLocale" value="en"/>
<property name="defaultTimeZone" value="America/New_York"/>
</bean>
The defaultLocale worked but the defaultTimeZone does not look like it did, because when I instantiate a new Date I get my current TimeZone and not the one I just set.