Package org.timedex.util

Examples of org.timedex.util.SessionStrategy


 
  public ModelAndView handleRequest(HttpServletRequest request,
      HttpServletResponse response) {

 
    SessionStrategy ss = HibernateSessionStrategy.getInstance();

    ss.getCurrentSession();
   
    Map<String, Object> model = new HashMap<String, Object>();
   
    return new ModelAndView("main", "model", model);
  }
View Full Code Here


public class AboutController extends AbstractTimedexController {
  @Override
  protected ModelAndView handleRequestInternal(HttpServletRequest request,
      HttpServletResponse response) throws Exception {
    SessionStrategy ss = HibernateSessionStrategy.getInstance();

    ss.getCurrentSession();
   
    Map<String, Object> model = new HashMap<String, Object>();
   
    return new ModelAndView("about", "model", model);
  }
View Full Code Here

TOP

Related Classes of org.timedex.util.SessionStrategy

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.