I have a play application which I am in the process of building a application that will use play framework for the front end but will also have some "worker nodes" which play will communicate with over JMS queues.
These worker nodes are meant to be light weight and therefore won't be running the full play framework.
I'd like to embed the same models in both the play framework app and the worker nodes to make it easy to pass the objects over JMS however to use ebean in play framework I need to have the object extend play.db.ebean.Model which won't work in the worker nodes as they aren't running on play.
What is the best way to do this?