Some recent research:
How do I import a script file into a Play Framework application?
#{script 'jquery-1.4.2.min.js' /}What's the best way to sort an internal JPA collection?
ListgetRegions(){ sorted = new List (regions); Collections.sort(sorted, new RegionComparator(getUserLanguage())); return sorted; }
How to use Java enums in a Play Framework's YAML datafile?
// try just the enum value // snake YAML can infer the rest... category: Third
How do I tie into Play's style and script import system?
#{set 'moreStyles'}
#{get 'moreStyles' /}
#{stylesheet 'main.css' /}
#{/set}