• 大小: 19.71M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-29
  • 语言: Java
  • 标签: dubbo  java  分布式  

资源简介

dubbo实例教程

<dubbo:application name="dubbo_customer"></dubbo:application>

<!-- 使用zookeeper注册中心暴露服务地址 -->
<dubbo:registry address="zookeeper://127.0.0.1:2181"
check="false"></dubbo:registry>
<!-- 要引用的服务 -->
<dubbo:reference interface="com.dao.SayHelloWorldInter"
id="springservice"  ></dubbo:reference>



资源截图

代码片段和文件信息

package com.dao.chu.customer;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathxmlApplicationContext;

import com.dao.chu.inter.SayHelloWorldInter;

/**
 * 
 * 消费者测试类
 * 
 * @version  [版本号 2017年1月25日]
 * @see  [相关类/方法]
 * @since  [产品/模块版本]
 */
public class BeginCustomer
{
    @SuppressWarnings(“resource“)
    public static void main(String[] args)
    {
        ApplicationContext applicationContext = new ClassPathxmlApplicationContext(new String[] { “classpath*:dubbo.xml“ });
        SayHelloWorldInter  sayHelloWorldInter = (SayHelloWorldInter) applicationContext.getBean(“springservice“);
        
        //使用接口中的方法
        sayHelloWorldInter.sayHelloWorld();
        while(true);
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1306  2017-01-25 17:17  customer\.classpath

     文件       1217  2017-01-24 17:06  customer\.project

     文件        639  2017-01-24 16:19  customer\.settings\.jsdtscope

     文件        430  2017-01-24 17:06  customer\.settings\org.eclipse.jdt.core.prefs

     文件         90  2017-01-24 16:19  customer\.settings\org.eclipse.m2e.core.prefs

     文件        934  2017-01-25 14:51  customer\.settings\org.eclipse.wst.common.component

     文件        252  2017-01-25 14:44  customer\.settings\org.eclipse.wst.common.project.facet.core.xml

     文件         49  2017-01-24 16:19  customer\.settings\org.eclipse.wst.jsdt.ui.superType.container

     文件          6  2017-01-24 16:19  customer\.settings\org.eclipse.wst.jsdt.ui.superType.name

     文件         50  2017-01-24 16:19  customer\.settings\org.eclipse.wst.validation.prefs

     文件        131  2017-01-24 17:20  customer\.tern-project

     文件       1496  2017-01-25 17:16  customer\pom.xml

     文件        847  2017-01-25 17:23  customer\src\main\java\com\dao\chu\customer\BeginCustomer.java

     文件       1334  2017-01-25 17:14  customer\src\main\resources\dubbo.xml

     文件         57  2017-01-24 16:19  customer\src\main\webapp\index.jsp

     文件        930  2017-01-25 14:44  customer\src\main\webapp\WEB-INF\web.xml

     文件        957  2017-01-25 17:46  customer\target\classes\com\dao\chu\customer\BeginCustomer.class

     文件       1334  2017-01-25 17:46  customer\target\classes\dubbo.xml

     文件         57  2017-01-24 16:19  customer\target\customer\index.jsp

     文件        968  2017-01-25 17:17  customer\target\customer\WEB-INF\classes\com\dao\chu\customer\BeginCustomer.class

     文件       1334  2017-01-25 17:17  customer\target\customer\WEB-INF\classes\dubbo.xml

     文件       4467  2016-07-06 16:29  customer\target\customer\WEB-INF\lib\aopalliance-1.0.jar

     文件      61829  2016-07-06 16:29  customer\target\customer\WEB-INF\lib\commons-logging-1.2.jar

     文件    1362058  2016-08-16 11:53  customer\target\customer\WEB-INF\lib\dubbo-2.5.3.jar

     文件       2878  2017-01-25 12:06  customer\target\customer\WEB-INF\lib\inter-2.0.jar

     文件     648253  2016-08-16 11:53  customer\target\customer\WEB-INF\lib\javassist-3.15.0-GA.jar

     文件      87325  2016-08-16 11:53  customer\target\customer\WEB-INF\lib\jline-0.9.94.jar

     文件     481535  2016-12-13 16:32  customer\target\customer\WEB-INF\lib\log4j-1.2.16.jar

     文件     792314  2016-08-16 11:53  customer\target\customer\WEB-INF\lib\netty-3.2.5.Final.jar

     文件    1208356  2016-08-16 11:53  customer\target\customer\WEB-INF\lib\netty-3.7.0.Final.jar

............此处省略189个文件信息

评论

共有 条评论