I created a new project in IntelliJ 13 using the Play 2 Module template for Java, and noticed what was # Ebean configurationmissing in conf/application.conf.
Being new to both the Play Framework and IntelliJ, I tried to follow the introductory video on Play and got stuck where I need to extend the Ebean Model class. The problem is that the class does not appear in the Import dialog box.
I tried to add the source directory to these files in File → Project Structure → Libraries, but this did not work.
If import play.db.ebean.Model;added, IntelliJ complains about cannot resolve symbol 'db'.
What do I need to do so that my project includes Play Ebean classes?
seron source
share