1. 程式人生 > >Dubbo中provider(消費者)的釋出,配置檔案

Dubbo中provider(消費者)的釋出,配置檔案

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
	xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans 
		http://www.springframework.org/schema/beans/spring-beans.xsd 
		http://code.alibabatech.com/schema/dubbo 
		http://code.alibabatech.com/schema/dubbo/dubbo.xsd">

	<!-- 使用dubbo標籤描述要釋出的服務. -->
	<!-- 任意定義的一個應用名稱. 為dubbo應用命名 -->
	<dubbo:application name="dubbo-test-provider"></dubbo:application>
	
	<!-- 提供註冊中心資訊 -->
	<dubbo:registry address="192.168.232.130:2181" protocol="zookeeper" />
	
	<!-- 提供協議資訊 -->
	<dubbo:protocol name="dubbo" port="20880"/>
	
	<!-- 提供服務, 要釋出到註冊中心的服務資訊.
		需要描述要釋出的服務的介面資訊.
		需要提供一個介面的實現類. 實現類的物件就是spring容器管理的物件.
		
		服務響應的時長: 
	 -->
	<dubbo:service interface="com.bjsxt.service.FlowerService"
		ref="flowerService"/>
	
	<!-- 提供服務的實現, 釋出的服務介面由本地的什麼實現類提供程式碼實現 -->
	<!-- <bean id="flowerService" class="com.bjsxt.service.impl.FlowerServiceImpl">
		<property name="flowerMapper" ref="flowerMapper"></property>
	</bean>
	
	<bean id="flowerMapper" class="com.bjsxt.mapper.FlowerMapperImpl">
	</bean> --> 

</beans>