upcgg

导航

统计
 

1、把应用jar包放到一个目录下,在lr中,引用导入系统里

2、新建java vuser,写入脚本
import com.alibaba.fastjson.JSONArray;
import com.jd.jmi.order.api.domain.JmiOrderDetail;
import com.jd.jmi.order.api.service.JmiOrderQueryService;
import com.jd.jmi.order.client.jsf.exceptions.JmiException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import lrapi.lr;
public class Actions
{
        static JmiOrderQueryService jmiOrderQueryService;
    private static ApplicationContext act;
     static {
         act = new ClassPathXmlApplicationContext("spring-config-jsf.xml");
         jmiOrderQueryService = act.getBean("jmiOrderQueryService",JmiOrderQueryService.class);
         }
    public int init() throws Throwable { 
        return 0;
    }//end of init
    public int action() throws Throwable {
    lr.start_transaction("QueryByOrderId");
     try {
    JmiOrderDetail detail = this.jmiOrderQueryService.queryByOrderId(Long.valueOf(lr.eval_string("<OrderId>")), "eeeee");
    if (detail != null) {   
    lr.end_transaction("QueryByOrderId", lr.PASS);
    //System.out.println(JSONArray.toJSONString("++++++++++++++++"+detail));
    }else{
    lr.end_transaction("QueryByOrderId", lr.FAIL);
    }
    } catch (JmiException e) {
            e.printStackTrace();
        }
    return 0;
    }
    public int end() throws Throwable {
        return 0;
    }//end of end
}

posted on   upcgg  阅读(453)  评论(0编辑  收藏  举报
编辑推荐:
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
· 聊一聊 操作系统蓝屏 c0000102 的故障分析
阅读排行:
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 如何打造一个高并发系统?
· 《SpringBoot》EasyExcel实现百万数据的导入导出
 
点击右上角即可分享
微信分享提示