* @author Keith Donald
*/
public class DateTimeZoneHandlerInterceptor implements HandlerInterceptor {
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
JodaTimeContext context = new JodaTimeContext();
context.setTimeZone(getTimeZone(request));
JodaTimeContextHolder.setJodaTimeContext(context);
return true;
}