Package org.g4studio.demo.online.web

Source Code of org.g4studio.demo.online.web.DoTransactionClient

package org.g4studio.demo.online.web;

import org.g4studio.common.util.SpringBeanLoader;
import org.g4studio.common.web.BaseAction;
import org.g4studio.core.metatype.Dto;
import org.g4studio.demo.online.service.DemoService;

public class DoTransactionClient {

  /**
   * 演示事务控制
   *
   * @author XiongChun
   * @since 2011-2-30
   * @see BaseAction
   */
  public static void main(String[] args) {
    DemoService demoService = (DemoService)SpringBeanLoader.getSpringBean("demoService");
    Dto outDto = demoService.doTransactionTest();
    System.out.println("返回值:\n" + outDto);
  }

}
TOP

Related Classes of org.g4studio.demo.online.web.DoTransactionClient

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.