I want to run some code on startup to pre-cache some stuff, and would also like to start a Timer to re-cache some things outside the critical path of a web request. Is this possible with Play Framework, and where so I put this code?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You need to create a bootstrap job which will be executed by Play at application start time.
Read more about how to do this in the Play Manual. |
|||
|
|
|
In playframework 2.0 and above, use GlobalSettings, as the following code:
more information, go to playframework docs: JavaGlobal |
|||
|
|
