Consider a situation when we have a Controller with 2 action methods that use same controller field. This field should be lazily initialized.
public class SomeController extends Controller {
private static volatile Resource resource;
private static Resource getResource() {
if (resource == null) {
synchronized (SomeController.class) {
if (resource == null) {
resource = new Resource();
}
}
}
return resource;
}
public static void action1() {
getResource().doSomeAction();
}
public static void action2() {
getResource().doSomeAnotherAction();
}
}
What are better ways of synchronizing common resources using Play Framework? Consider that resource should be lazy initialized.
Thanks, Adrian