Skip to content

Instantly share code, notes, and snippets.

@nicmarti
Created February 1, 2012 16:10
Show Gist options
  • Save nicmarti/1717756 to your computer and use it in GitHub Desktop.
Save nicmarti/1717756 to your computer and use it in GitHub Desktop.
Playground controller Play 1.x
package controllers;
import models.JobPost;
import play.mvc.Controller;
import java.util.List;
public class DemoPlayground extends Controller {
public static void index(){
List<JobPost> jobs=JobPost.find15Latest();
render(jobs);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment