In the example above, which statement is NOT true with regards to Spring Java configuration?
In the example above, which statement is NOT true with regards to Spring Java configuration? (select one) @Configuration public class AppConfig { @Bean public ClientService clientService() { ClientServiceImpl clientService = new ClientServiceImpl(); clientService.addClientDao(new ClientDao()); return clientService; }A . The declared bean is a singleton by defaultB . This bean might...