测试dubbo接口中spring-test的使用

 

测试dubbo接口中spring-test的使用

 

 

dubbo provider的配置

<dubbo:application name="dubbo-provider" owner="test" organization="zz"/>

 <dubbo:registry address="127.0.01" protocol="zookeeper"/>

<dubbo:protocol name="dubbo" port="222" accesslog="true"/>

<dubbo:service ref="bean1" group="test" version="2.0.0" timeout="10000" interface="com.test.DubboTest"/>

配置bean

<bean id="bean1" class="com.test.DubboTestImpl">

<property/>

</bean>

dubbo consumer的配置

dubbo:application

dubbo:registry

dubbo:reference

 

 

在consumer端通过spring-test测试dubbo的服务接口的可用性;

package test;

import java.util.ArrayList;
import java.util.List;

import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;


@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:/applicationContext/applicationContext.xml","classpath:/applicationContext/applicationContext-spring-rmi-client.xml","classpath:/applicationContext/applicationContext-dubbo-consumer.xml"})

public class TestDubboService {
 @Autowired
 private Iservice service;
 
/*
 * private static ApplicationContext context = null;
 @Before
 public void beforeClass() {
  if (null == context) {
   context = new ClassPathXmlApplicationContext();
  }

 }*/

 @Test
 public void testDubbo() {

  
  //IModifyPrepareForPlanIn5TableByLoanIdsService service=(IModifyPrepareForPlanIn5TableByLoanIdsService) context.getBean("modifyPrepareForPlanIn5TableByLoanIdsService");
  
  
  
  List<Integer> loanIds = new ArrayList<Integer>();
  loanIds.add(1);
  loanIds.add(2);
  loanIds.add(3);
  loanIds.add(4);
  loanIds.add(5);
  service.modifyPrepareForPlanIn5TableByLoanIds(loanIds, 5, 1);
 }

}

转载于:https://my.oschina.net/iioschina/blog/1490588

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值