Commit 2c14f122 by 陶光胜

init

parent 5e1339ac
package com.gic.message.service;
public interface TestService {
void test();
}
package com.gic.message.service.impl;
import com.gic.message.service.TestService;
import org.springframework.stereotype.Service;
@Service("testService")
public class TestServiceImpl implements TestService {
@Override
public void test() {
System.out.println("true = " + true);
}
}
......@@ -14,7 +14,7 @@
<dubbo:application name="gic-platform-message"/>
<dubbo:protocol name="dubbo" port="20340"/>
<dubbo:service interface="com.gic.message.service.TestService" ref="testService" timeout="6000" />
<dubbo:reference interface="com.gic.bizdict.api.service.BizdictService" id="bizdictService " timeout="6000" retries="0"/>
<dubbo:reference interface="com.gic.search.business.api.service.EsBusinessOperaApiService" id="esBusinessOperaApiService" timeout="6000" />
<dubbo:reference interface="com.gic.enterprise.service.PlatformBrandApiService" id="platformBrandApiService" timeout="6000" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment