ApplicationContext appContext = new ClassPathXmlApplicationContext("spring/config/BeanLocations.xml");
CreateExternalAccountBO createExternalAccountBO = (CreateExternalAccountBO)appContext.getBean("createExternalAccountBO");
createExternalAccountBO.save(createAccount);
return new ModelAndView("externalAccountSuccess");
}
@RequestMapping(value = "/addInternalAccount", method = RequestMethod.POST)