パッケージ | 説明 |
---|---|
org.springframework.http.server | サーバー側の HTTP 上の抽象化が含まれています。 |
org.springframework.web.reactive.function.server | Spring のリアクティブ環境用の関数 Web フレームワークを構成する型を提供します。 |
org.springframework.web.reactive.function.server.support | org.springframework.web.reactive.function.server パッケージをサポートするクラス。 |
org.springframework.web.reactive.handler | 抽象基本クラスを含む HandlerMapping 実装を提供します。 |
org.springframework.web.servlet.function | Spring のサーブレット環境用の関数 Web フレームワークを構成する型を提供します。 |
org.springframework.web.servlet.handler | カスタム実装の抽象基本クラスを含む、標準の HandlerMapping 実装を提供します。 |
org.springframework.web.servlet.mvc | Spring に付属するサーブレット MVC フレームワークの標準コントローラー実装。 |
org.springframework.web.util.pattern | 一致する HTTP リクエストパスの専用サポート。 |
修飾子と型 | インターフェースと説明 |
---|---|
interface | RequestPath |
修飾子と型 | メソッドと説明 |
---|---|
PathContainer | RequestPath.contextPath() アプリケーションを表す URL パスの一部を返します。 |
static PathContainer | PathContainer.parsePath(StringSE path) |
static PathContainer | PathContainer.parsePath(StringSE path, PathContainer.Options options) パス値を Separator および PathSegment 要素のシーケンスに解析します。 |
PathContainer | RequestPath.pathWithinApplication() アプリケーション内のリクエストマッピングに通常使用されるコンテキストパスの後のリクエストパスの部分。 |
default PathContainer | PathContainer.subPath(int index) 指定されたオフセットから要素リストにサブパスを抽出します。 |
default PathContainer | PathContainer.subPath(int startIndex, int endIndex) 指定された開始オフセットから要素リスト(包括的)および終了オフセット(包括的)へのサブパスを抽出します。 |
修飾子と型 | メソッドと説明 |
---|---|
default PathContainer | ServerRequest.pathContainer() 使用すべきではありません。 5.3 の時点で、 ServerRequest.requestPath() を推奨 |
修飾子と型 | メソッドと説明 |
---|---|
PathContainer | ServerRequestWrapper.pathContainer() 使用すべきではありません。 |
修飾子と型 | メソッドと説明 |
---|---|
protected ObjectSE | AbstractUrlHandlerMapping.lookupHandler(PathContainer lookupPath, ServerWebExchange exchange) 指定された URL ルックアップパスのハンドラーインスタンスをルックアップします。 |
修飾子と型 | メソッドと説明 |
---|---|
default PathContainer | ServerRequest.pathContainer() 使用すべきではありません。 5.3 の時点で、 ServerRequest.requestPath() を推奨 |
コンストラクターと説明 |
---|
RequestMatchResult(PathPattern pathPattern, PathContainer lookupPath) 一致した PathPattern を使用してインスタンスを作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
protected CacheControl | WebContentInterceptor.lookupCacheControl(PathContainer path) 指定された解析済み path の CacheControl インスタンスを検索します。 |
protected IntegerSE | WebContentInterceptor.lookupCacheSeconds(PathContainer path) 指定された解析済み path の cacheSeconds 値を検索します。 |
修飾子と型 | メソッドと説明 |
---|---|
PathContainer | PathPattern.extractPathWithinPattern(PathContainer path) 指定されたパスのパターンマッピングされた部分を決定します。 |
PathContainer | PathPattern.PathRemainingMatchInfo.getPathMatched() パターンと一致したパスの部分を返します。 |
PathContainer | PathPattern.PathRemainingMatchInfo.getPathRemaining() パターンと一致しなかったパスの部分を返します。 |
修飾子と型 | メソッドと説明 |
---|---|
PathContainer | PathPattern.extractPathWithinPattern(PathContainer path) 指定されたパスのパターンマッピングされた部分を決定します。 |
PathPattern.PathMatchInfo | PathPattern.matchAndExtract(PathContainer pathContainer) このパターンを指定された URI パスに一致させ、抽出された URI テンプレート変数とパスパラメーター(マトリックス変数)を返します。 |
boolean | PathPattern.matches(PathContainer pathContainer) このパターンが指定されたパスに一致するかどうか。 |
PathPattern.PathRemainingMatchInfo | PathPattern.matchStartOfPath(PathContainer pathContainer) 指定されたパスの先頭に一致し、このパターンでカバーされていない残りの部分を返します。 |