public final class EndpointRequest extends ObjectSE
ServerWebExchangeMatcher を作成するために使用できるファクトリ。| 修飾子と型 | クラスと説明 |
|---|---|
static class | EndpointRequest.EndpointServerWebExchangeMatcherServerWebExchangeMatcher は、actuator endpoints と照合するために使用されていました。 |
static class | EndpointRequest.LinksServerWebExchangeMatcher リンクエンドポイントとの照合に使用される ServerWebExchangeMatcher。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
static EndpointRequest.EndpointServerWebExchangeMatcher | to(ClassSE<?>... endpoints) 指定された actuator endpoints を含むマッチャーを返します。 |
static EndpointRequest.EndpointServerWebExchangeMatcher | to(StringSE... endpoints) 指定された actuator endpoints を含むマッチャーを返します。 |
static EndpointRequest.EndpointServerWebExchangeMatcher | toAnyEndpoint() すべての actuator endpoints を含むマッチャーを返します。 |
static EndpointRequest.LinksServerWebExchangeMatcher | toLinks() リンクのエンドポイントでのみ一致するマッチャーを返します。 |
cloneSE, equalsSE, finalizeSE, getClassSE, hashCodeSE, notifySE, notifyAllSE, toStringSE, waitSE, waitSE, waitSEpublic static EndpointRequest.EndpointServerWebExchangeMatcher toAnyEndpoint()
actuator endpoints を含むマッチャーを返します。また、アクチュエーターエンドポイントのベースパスにあるリンクエンドポイントも含まれます。excluding メソッドを使用して、必要に応じて特定のエンドポイントをさらに削除できます。例:EndpointRequest.toAnyEndpoint().excluding(ShutdownEndpoint.class)
ServerWebExchangeMatcherpublic static EndpointRequest.EndpointServerWebExchangeMatcher to(ClassSE<?>... endpoints)
actuator endpoints を含むマッチャーを返します。例:EndpointRequest.to(ShutdownEndpoint.class, HealthEndpoint.class)
endpoints - 含めるエンドポイント ServerWebExchangeMatcherpublic static EndpointRequest.EndpointServerWebExchangeMatcher to(StringSE... endpoints)
actuator endpoints を含むマッチャーを返します。例:
EndpointRequest.to("shutdown", "health")
endpoints - 含めるエンドポイント ServerWebExchangeMatcherpublic static EndpointRequest.LinksServerWebExchangeMatcher toLinks()
actuator endpoints と異なる場合に使用できます。excludingLinks メソッドをこれと組み合わせて使用して、リンクのエンドポイントを toAnyEndpoint から削除できます。例:EndpointRequest.toLinks()
ServerWebExchangeMatcherCopyright © 2019 Pivotal Software, Inc.. All rights reserved.