資源簡介
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應用
評論
共有 條評論