Package examples.dao

Examples of examples.dao.JeecgDemoDao


import examples.entity.Employee;

public class ClientDao {
  public static void main(String args[]) {
    BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext.xml");
    JeecgDemoDao employeeDao = (JeecgDemoDao) factory.getBean("jeecgDemoDao");
    System.out.println("--------------count------------------"+employeeDao.getCount());
    Employee employee = new Employee();
    employee.setName("张开忠");
    //employeeDao.getCount();
   
   
View Full Code Here

TOP

Related Classes of examples.dao.JeecgDemoDao

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.