Skip to content

Commit

Permalink
Polish apache#718 : [Samples] Introducing the samples deployed the ex…
Browse files Browse the repository at this point in the history
…ternal Servlet container
  • Loading branch information
mercyblitz committed May 26, 2020
1 parent 0f1fe4c commit f874883
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ If you still use the legacy Dubbo whose version is less than 2.7.0, please use t

### Build from Source

If you'd like to attempt to experience latest features, you also can build from source as follow:
If you'd like to attempt to experience the latest features, you also can build from the source code as follow:

1. Maven install current project in your local repository.
> Maven install = `mvn install`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package org.apache.dubbo.spring.boot.actuate.endpoint;

import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.dubbo.spring.boot.actuate.endpoint.metadata.AbstractDubboMetadata;
import org.apache.dubbo.spring.boot.actuate.endpoint.metadata.DubboReferencesMetadata;

Expand All @@ -26,7 +27,7 @@
import java.util.Map;

/**
* Dubbo {@link Reference} Metadata {@link Endpoint}
* {@link DubboReference} Metadata {@link Endpoint}
*
* @since 2.7.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package org.apache.dubbo.spring.boot.actuate.endpoint;

import org.apache.dubbo.config.annotation.DubboService;
import org.apache.dubbo.spring.boot.actuate.endpoint.metadata.AbstractDubboMetadata;
import org.apache.dubbo.spring.boot.actuate.endpoint.metadata.DubboServicesMetadata;

Expand All @@ -26,7 +27,7 @@
import java.util.Map;

/**
* Dubbo {@link Service} Metadata {@link Endpoint}
* {@link DubboService} Metadata {@link Endpoint}
*
* @since 2.7.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package org.apache.dubbo.spring.boot.actuate.endpoint.metadata;

import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.dubbo.config.spring.ReferenceBean;
import org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor;

Expand All @@ -26,7 +27,7 @@
import java.util.Map;

/**
* Dubbo {@link Reference} Metadata
* {@link DubboReference} Metadata
*
* @since 2.7.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/
package org.apache.dubbo.spring.boot.actuate.endpoint.metadata;

import org.apache.dubbo.config.annotation.DubboService;
import org.apache.dubbo.config.spring.ServiceBean;

import org.springframework.stereotype.Component;
Expand All @@ -24,7 +25,7 @@
import java.util.Map;

/**
* Dubbo {@link Service} Metadata
* {@link DubboService} Metadata
*
* @since 2.7.0
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@
*/
package org.apache.dubbo.spring.boot.autoconfigure;

import org.apache.dubbo.config.annotation.DubboReference;
import org.apache.dubbo.config.annotation.DubboService;
import org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor;
import org.apache.dubbo.config.spring.beans.factory.annotation.ServiceAnnotationBeanPostProcessor;
import org.apache.dubbo.config.spring.beans.factory.annotation.ServiceClassPostProcessor;
import org.apache.dubbo.config.spring.context.annotation.DubboConfigConfiguration;
import org.apache.dubbo.config.spring.context.annotation.EnableDubboConfig;

Expand Down Expand Up @@ -48,9 +51,9 @@
/**
* Dubbo Auto {@link Configuration}
*
* @see Reference
* @see Service
* @see ServiceAnnotationBeanPostProcessor
* @see DubboReference
* @see DubboService
* @see ServiceClassPostProcessor
* @see ReferenceAnnotationBeanPostProcessor
* @since 2.7.0
*/
Expand Down

0 comments on commit f874883

Please sign in to comment.