public synchronized ModelAndView displayUpdatePage(@RequestParam("transId")Integer transId) {
ApplicationContext appContext = new ClassPathXmlApplicationContext("spring/config/BeanLocations.xml");
InternalUserTransactionBO internalUserTransactionBO = (InternalUserTransactionBO)appContext.getBean("internalUserTransactionBO");
InternalUserTransaction internalTransaction = internalUserTransactionBO.findTransactionById(transId);
return new ModelAndView("updateInternalTransaction","command",internalTransaction);
}