There is no one right way to implement the singleton pattern in Java, however using a public static final instance variable is a good approach provided that you don't need lazy loading and can live with the consequences for unit testing.
If unit testing is an issue and you still want a singleton, consider using dependency injection. This will allow you to configure an ordinary instance with a singleton lifecycle.
The final modifier allows the Java compiler and runtime to make good optimization and thread-safety decisions. I would always use final with this style of singleton declaration. I would go so far as to say it is a bad design choice to allow a singleton instance to be mutable - because client code can no longer rely on seeing the same value for the lifetime of the process.
It is possible to deal with the unit testing issue with a configurable factory class:
private static final MySingleton INSTANCE = MySingletonFactory.create();
... without losing the benefits of final.