<?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" default-autowire="byName"> |
<dubbo:application name= "${dubbo.application.name}" /> |
<dubbo:registry address= "${dubbo.registry.address}" timeout= "${dubbo.consumer.timeout}" /> |
<dubbo:consumer retries= "${dubbo.consumer.retries}" group= "oa" /> |
<!-- basic start --> |
<dubbo:reference interface = "com.xxx.basic.manage.service.SysRoleService" id= "sysRoleService" check= "false" url= "dubbo://localhost:20880" /> |
<dubbo:reference interface = "com.xxx.basic.manage.service.ResourceService" id= "resourceService" check= "false" url= "dubbo://localhost:20880" /> |
<dubbo:reference interface = "com.xxx.basic.manage.service.OrganizationService" id= "organizationService" check= "false" url= "dubbo://localhost:20880" /> |
<dubbo:reference interface = "com.xxx.basic.manage.service.SysUserService" id= "sysUserService" check= "false" url= "dubbo://localhost:20880" /> |
|
</beans> |