Package com.vst.dao

Examples of com.vst.dao.VstDomainDaoRegistry


public class CheckDaoRegistry {
  public static void main(String[] args) {
       ApplicationContext context = new ClassPathXmlApplicationContext(
           new String[]{"com/vst/snippets/snippetsContext-hibernate.xml"});

       final VstDomainDaoRegistry registry =
         (VstDomainDaoRegistry) context.getBean("daoRegistry");

       Dao dao= registry.getAnswerDao();
       System.out.println(dao.getClass().getName());

  }
View Full Code Here

TOP

Related Classes of com.vst.dao.VstDomainDaoRegistry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.