GitHub - alibaba/dubbo-spring-boot-starter: Dubbo Spring Boot Starter

[](#dubbo-spring-boot-starter-)dubbo-spring-boot-starter Maven Central

中文版文档

Dubbo Spring Boot Starter. Dubbo official dubbo-spring-boot-project

Support jdk version 1.6 or 1.6+

(please import googlestyle-java.xml if you want to modify the code)

[](#how-to-publish-dubbo)How to publish dubbo

  • add Dependencies:

    <dependency>

    <groupId>com.alibaba.spring.boot</groupId>
    <artifactId>dubbo-spring-boot-starter</artifactId>
    <version>2.0.0</version>

    </dependency>

  • add dubbo configuration in application.properties, demo:

spring.application.name=dubbo-spring-boot-starter
spring.dubbo.server=true
spring.dubbo.registry=N/A

  • then add @EnableDubboConfiguration on Spring Boot Application, indicates that dubbo is enabled.(web or non-web application can use dubbo provider)

@SpringBootApplication
@EnableDubboConfiguration
public class DubboProviderLauncher {
//...
}

  • code your dubbo service, add @Service(import com.alibaba.dubbo.config.annotation.Service) on your service class, and interfaceClass is the interface which will be published.

@Service(interfaceClass = IHelloService.class)
@Component
public class HelloServiceImpl implements IHelloService {
//...
}

  • Start Spring Boot.

[](#how-to-consume-dubbo)How to consume Dubbo

  • add Dependencies:

    <dependency>

    <groupId>com.alibaba.spring.boot</groupId>
    <artifactId>dubbo-spring-boot-starter</artifactId>
    <version>2.0.0</version>

    </dependency>

  • add dubbo configuration in application.properties, demo:

spring.application.name=dubbo-spring-boot-starter

  • then add @EnableDubboConfiguration on Spring Boot Application

@SpringBootApplication
@EnableDubboConfiguration
public class DubboConsumerLauncher {
//...
}

  • injection interface by the @Reference annotation.

@Component
public class HelloConsumer {
@Reference(url = "dubbo://127.0.0.1:20880")
private IHelloService iHelloService;

}

[](#reference)Reference


原网址: 访问
创建于: 2019-03-24 01:35:26
目录: default
标签: 无

请先后发表评论
  • 最新评论
  • 总共0条评论