首页 > 代码库 > 能源项目xml文件 -- app-dubbo.xml

能源项目xml文件 -- app-dubbo.xml

<?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  
        classpath:/org/springframework/beans/factory/xml/spring-beans-4.1.xsd   
        http://code.alibabatech.com/schema/dubbo  
        classpath:META-INF/dubbo.xsd ">

    <dubbo:application name="smart"/>
    <dubbo:consumer timeout="30000"></dubbo:consumer> 
    

    <dubbo:reference id="webSessionService" interface="com.ucenter.api.session.service.IWebSessionService"
        url="dubbo://${dubbo.ucenter.address}/com.ucenter.api.session.service.IWebSessionService" version="1.0" check="false" />
    
    <dubbo:reference id="loaResourceService" interface="com.ucenter.api.loa.service.ILoaResourceService"
        url="dubbo://${dubbo.ucenter.address}/com.ucenter.api.loa.service.ILoaResourceService" version="1.0" check="false" />
    
    <dubbo:reference id="loaFunctionService" interface="com.ucenter.api.loa.service.ILoaFunctionService"
        url="dubbo://${dubbo.ucenter.address}/com.ucenter.api.loa.service.ILoaFunctionService" version="1.0" check="false" />
        
    <dubbo:reference id="employeeService" interface="com.ucenter.api.organization.service.IEmployeeService"
        url="dubbo://${dubbo.ucenter.address}/com.ucenter.api.organization.service.IEmployeeService" version="1.0" check="false" />
</beans>  

 

能源项目xml文件 -- app-dubbo.xml