-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix #169 * Polish : #324 & #325 * Polish : #315 * Polish : #321 * Polish : #321 * Polish : #321 for test case * Polish : Update Demos * Polish : Update version to be 0.2.1 * Polish : #319 * Polish : #226 * Polish : #309 * Fix the test case's bugs * Fix the test case's bugs * Fix a JavaDoc issue * Update SNAPSHOT and add exclude list * Update SNAPSHOT to be 0.2.1-SNAPSHOT * Update JDK versions * Update JDK versions
- Loading branch information
1 parent
0fad8dc
commit fb2be00
Showing
35 changed files
with
449 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,18 @@ | |
*/ | ||
package com.alibaba.boot.dubbo.actuate.endpoint; | ||
|
||
import com.alibaba.dubbo.config.*; | ||
import com.alibaba.dubbo.config.AbstractConfig; | ||
import com.alibaba.dubbo.config.ApplicationConfig; | ||
import com.alibaba.dubbo.config.ConsumerConfig; | ||
import com.alibaba.dubbo.config.MethodConfig; | ||
import com.alibaba.dubbo.config.ModuleConfig; | ||
import com.alibaba.dubbo.config.MonitorConfig; | ||
import com.alibaba.dubbo.config.ProtocolConfig; | ||
import com.alibaba.dubbo.config.ProviderConfig; | ||
import com.alibaba.dubbo.config.ReferenceConfig; | ||
import com.alibaba.dubbo.config.RegistryConfig; | ||
import com.alibaba.dubbo.config.ServiceConfig; | ||
|
||
import org.springframework.boot.actuate.endpoint.annotation.Endpoint; | ||
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation; | ||
|
||
|
@@ -32,7 +43,7 @@ | |
* @author <a href="mailto:[email protected]">Mercy</a> | ||
* @since 0.2.0 | ||
*/ | ||
@Endpoint(id = "dubbo-configs") | ||
@Endpoint(id = "dubboConfigs") | ||
public class DubboConfigsMetadataEndpoint extends AbstractDubboEndpoint { | ||
|
||
@ReadOperation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,6 @@ | |
|
||
import java.util.SortedMap; | ||
|
||
import static com.alibaba.boot.dubbo.actuate.endpoint.DubboEndpoint.DUBBO_PROPERTIES_ENDPOINT_ID; | ||
import static com.alibaba.boot.dubbo.util.DubboUtils.filterDubboProperties; | ||
|
||
/** | ||
|
@@ -30,7 +29,7 @@ | |
* @author <a href="mailto:[email protected]">Mercy</a> | ||
* @since 1.0.0 | ||
*/ | ||
@Endpoint(id = DUBBO_PROPERTIES_ENDPOINT_ID) | ||
@Endpoint(id = "dubboProperties") | ||
public class DubboPropertiesEndpoint extends AbstractDubboEndpoint { | ||
|
||
@ReadOperation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
import com.alibaba.dubbo.config.annotation.Reference; | ||
import com.alibaba.dubbo.config.spring.ReferenceBean; | ||
import com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor; | ||
|
||
import org.springframework.beans.factory.annotation.InjectionMetadata; | ||
import org.springframework.boot.actuate.endpoint.annotation.Endpoint; | ||
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation; | ||
|
@@ -32,7 +33,7 @@ | |
* @author <a href="mailto:[email protected]">Mercy</a> | ||
* @since 1.0.0 | ||
*/ | ||
@Endpoint(id = "dubbo-references") | ||
@Endpoint(id = "dubboReferences") | ||
public class DubboReferencesMetadataEndpoint extends AbstractDubboEndpoint { | ||
|
||
@ReadOperation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
|
||
import com.alibaba.dubbo.config.annotation.Service; | ||
import com.alibaba.dubbo.config.spring.ServiceBean; | ||
|
||
import org.springframework.boot.actuate.endpoint.annotation.Endpoint; | ||
import org.springframework.boot.actuate.endpoint.annotation.ReadOperation; | ||
|
||
|
@@ -30,7 +31,7 @@ | |
* @author <a href="mailto:[email protected]">Mercy</a> | ||
* @since 0.2.0 | ||
*/ | ||
@Endpoint(id = "dubbo-services") | ||
@Endpoint(id = "dubboServices") | ||
public class DubboServicesMetadataEndpoint extends AbstractDubboEndpoint { | ||
|
||
@ReadOperation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ | |
import com.alibaba.dubbo.config.ProtocolConfig; | ||
import com.alibaba.dubbo.config.spring.ServiceBean; | ||
import com.alibaba.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor; | ||
|
||
import org.springframework.boot.actuate.endpoint.annotation.Endpoint; | ||
import org.springframework.boot.actuate.endpoint.annotation.WriteOperation; | ||
|
||
|
@@ -34,7 +35,7 @@ | |
* @author <a href="mailto:[email protected]">Mercy</a> | ||
* @since 0.2.0 | ||
*/ | ||
@Endpoint(id = "dubbo-shutdown") | ||
@Endpoint(id = "dubboShutdown") | ||
public class DubboShutdownEndpoint extends AbstractDubboEndpoint { | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.