Skip to content

Commit

Permalink
Merge pull request #1375 from mercyblitz/finchley
Browse files Browse the repository at this point in the history
Polish #1363 : Resolve the issues of JavaDoc
  • Loading branch information
mercyblitz authored Apr 15, 2020
2 parents 3b28fc6 + 5e847f2 commit 8f6a99b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 21 deletions.
6 changes: 0 additions & 6 deletions spring-cloud-alibaba-dependencies/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@
<seata.version>1.1.0</seata.version>
<nacos.client.version>1.2.1</nacos.client.version>
<nacos.config.version>0.8.0</nacos.config.version>
<aliyun.sdk.version>4.4.1</aliyun.sdk.version>
<alicloud.context.version>1.0.5</alicloud.context.version>
<aliyun.sdk.edas.version>2.44.0</aliyun.sdk.edas.version>
<aliyun.java.sdk.dysmsapi>1.1.0</aliyun.java.sdk.dysmsapi>
<aliyun.sdk.mns>1.1.8.6</aliyun.sdk.mns>
<aliyun.java.sdk.dyvmsapi>1.1.1</aliyun.java.sdk.dyvmsapi>
<spring.context.support.version>1.0.6</spring.context.support.version>

<!-- Maven Plugin Versions -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

/**
* @author lengleng
* @date 2019-08-01
* <p>
* sentinel 降级处理
*/
Expand All @@ -35,7 +34,7 @@ public class EchoServiceFallback implements EchoService {
/**
* 调用服务提供方的输出接口.
* @param str 用户输入
* @return
* @return response
*/
@Override
public String echo(String str) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

/**
* @author lengleng
* @date 2019-08-01
*/
@Component
public class EchoServiceFallbackFactory implements FallbackFactory<EchoServiceFallback> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@

/**
* @author lengleng
* @date 2019-08-01
* <p>
* example feign client
*/
@FeignClient(name = "service-provider",
fallbackFactory = EchoServiceFallbackFactory.class)
@FeignClient(name = "service-provider", fallbackFactory = EchoServiceFallbackFactory.class)
public interface EchoService {

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@

/**
* @author lengleng
* @date 2019-08-01
*/
@RestController
public class EchoController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,12 @@
* Spring Cloud Service-to-Service call is transported by Dubbo under the hood, there are
* two main scenarios:
* <ol>
* <li>{@link FeignClient @FeignClient} annotated classes:
* <ul>
* If {@link DubboTransported @DubboTransported} annotated classes, the invocation of all
* <li>{@link FeignClient @FeignClient} annotated classes: If
* {@link DubboTransported @DubboTransported} annotated classes, the invocation of all
* methods of {@link FeignClient @FeignClient} annotated classes.
* </ul>
* <ul>
*
* If {@link DubboTransported @DubboTransported} annotated methods of
* {@link FeignClient @FeignClient} annotated classes.
* </ul>
* </li>
* {@link FeignClient @FeignClient} annotated classes.</li>
* <li>{@link LoadBalanced @LoadBalanced} {@link RestTemplate} annotated field, method and
* parameters</li>
* </ol>
Expand Down

0 comments on commit 8f6a99b

Please sign in to comment.