Package com.share.core.dao.system

Examples of com.share.core.dao.system.SysColumnDao


  private final static String TABLE_NAME = "g_test";

  public static void main(String[] args) {
    ApplicationContext context = new ClassPathXmlApplicationContext(new String[] { "spring/application-test.xml" });

    SysColumnDao sysColumnDao = (SysColumnDao) context.getBean("sysColumnDao");
    List list = sysColumnDao.findList(DATABASE_NAME, TABLE_NAME);
    System.out.println(PojosHelper.getPojosStr(list));
    System.out.println(PojosHelper.getPojosMethod(list));

    System.out.println(DaoHelper.getDaoInsertStr(TABLE_NAME, list));
    System.out.println(DaoHelper.getDaoUpdateStr(TABLE_NAME, list));
View Full Code Here

TOP

Related Classes of com.share.core.dao.system.SysColumnDao

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.