Package hello.domain

Examples of hello.domain.Fortune


  @GET
  @Produces(TEXT_HTML + "; charset=utf-8")
  public Viewable fortunes() {
    final Session session = sessionFactory.openSession();
    final List fortunes = new ArrayList(session.createCriteria(Fortune.class).list());
    fortunes.add(new Fortune(0, "Additional fortune added at request time."));
    Collections.sort(fortunes);
   
    session.close();
    return new Viewable("/fortunes.mustache", new Scope(fortunes));
  }
View Full Code Here

TOP

Related Classes of hello.domain.Fortune

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.