public class ServiceLocator {
static Logger logger = Logger.getLogger(ServiceLocator.class);
public static AccountService getAccountService() throws Exception{
AccountService accountService = (AccountService)BeanLocatorFactory.getBean("accountService");
return accountService;
}