服务消费方注解:
import com.alibaba.dubbo.config.annotation.Reference; import org.springframework.stereotype.Component;
@Component public class BarAction {
@Reference(version="1.0.0")
private FooService fooService;
}
服务消费方注解:
import com.alibaba.dubbo.config.annotation.Reference; import org.springframework.stereotype.Component;
@Component public class BarAction {
@Reference(version="1.0.0")
private FooService fooService;
}