Java tutorial
/*L * Copyright Oracle Inc, SAIC-F. * * Distributed under the OSI-approved BSD 3-Clause License. * See http://ncip.github.com/cadsr-api/LICENSE.txt for details. */ package gov.nih.nci.cadsrapi.dao.orm; import org.springframework.context.*; import org.springframework.context.support.*; public class TestORMDAO { public static void main() { ApplicationContext context = new ClassPathXmlApplicationContext("application-config.xml"); CartORMDAOImpl cart = (CartORMDAOImpl) context.getBean("ORMDAO"); } }