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
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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 |
|||
|
|
