Examples of JeecgDemoService


Examples of examples.service.JeecgDemoService

import examples.service.JeecgDemoService;

public class ClientService {
  public static void main(String args[]) {
    BeanFactory factory = new ClassPathXmlApplicationContext("applicationContext.xml");
    JeecgDemoService jeecgDemoService = (JeecgDemoService) factory.getBean("jeecgDemoService");
    JeecgDemo jeecgDemo = new JeecgDemo();
    jeecgDemo.setAge(30);
    jeecgDemo.setBirthday(new Date());
    jeecgDemo.setUserName("张代浩111");
    jeecgDemoService.add(jeecgDemo);
   
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.