How can a bean of type LegacySingleton be created (using XML configuration)? (select one)
How can a bean of type LegacySingleton be created (using XML configuration)? (select one) Consider the following class: public class LegacySingleton { private LegacySingleton(){} public static LegacySingleton getAServiceInstance() { return new LegacySingleton(); } }A...