资源简介
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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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.xm
文件 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个文件信息
- 上一篇:java 在线电子书 购物商城(eBook)
- 下一篇:SSH框架web应用
相关资源
- JAVA基础入门(ppt教程)
- Java网络购物中心项目源码(附数据库
- Java讯友网络相册源码(附数据库)
- 《Java EE轻量级框架应用与开发 S2SH》
- java微服务实战书籍
- javaweb投票系统(源码+数据库脚本)
- java7开发规范
- 种子公司无纸化办公业务系统(静态
- 解决方案:java.security.InvalidKeyExcepti
- java读写csv文件(数据上传匹配)
- [Java网络编程(第3版2004)].(Java.Ne
- ice rpc网络编程(php/java/c#/ruby/等多种
- java struts2 Demo
- 《Java并发编程的艺术》pdf
- httpclient爬取美图
- Java编程思想(中文第4版)
- Java并发编程的艺术
- Java调用腾讯云接口发送短信验证码项
- java游戏:将GIF转 字符GIF
- 《iText实战(第2版)文字版》pdf
- 编写高质量代码 改善Java程序的151个
- 支付宝手机网站支付SDKDemo(官方)
- 支付宝电脑网站支付 SDK Demo(官方)
- 支付宝当面付SDK Demo(官方)-JAVA版
- Introduction to Neural Networks 2nd edition
- Linux下JAVA程序调用so库的接口函数(
- DJ NativeSwing开源包
- javaTCP模拟多用户服务器
- Guns框架技术文档
- Java常用类 上篇
评论
共有 条评论