dubbo与spring整合使用(服务与引用)

无论是发布服务还是引用服务都需要在pom中加入相关的jar包


		
			com.alibaba
			dubbo
			
				
					spring
					org.springframework
				
				
					netty
					org.jboss.netty
				
			
		
		
			org.apache.zookeeper
			zookeeper
		
		
			com.github.sgroschupf
			zkclient
		

发布dubbo服务,在spring.xml中配置如下(注意头文件中加入dubbo的约束,可能需要在MyEclipse中加入约束文档)



	
	
	
	
	
	
	
	
	
	
	
	
	

引用dubbo服务,在springmvc中配置如下:




	
	
	
	
		
		
	
	
	
	
	
	
	
	
		
	
      

dubbo的监控中心war包
注意如果zookeeper和dubbo不在一台机器上,在解压后war包的web-inf目录下有个dubbo.properties,修改它

你可能感兴趣的:(开发轶事,dubbo,spring,整合,服务,引用)