インターフェースの使用
org.springframework.beans.PropertyEditorRegistry
PropertyEditorRegistry を使用するパッケージ
パッケージ
説明
このパッケージには、Java Bean を操作するためのインターフェースとクラスが含まれています。
Bean ファクトリの SPI インターフェースおよび構成関連の便利なクラス。
org.springframework.beans.factory パッケージをサポートするクラス。Bean のリストをソートおよび保持するためのユーティリティクラスなど、org.springframework.beans パッケージをサポートするクラス。
ビジネスや UI レイヤーで使用するためのデータバインディングおよび検証機能を提供します。
Web 固有のデータバインディング機能を提供します。
Web データバインディングのサポートクラス。
org.springframework.web.method.annotation パッケージに基づいた、アノテーションベースのハンドラーメソッド処理のための MVC インフラストラクチャ。org.springframework.beans 内の PropertyEditorRegistry 使用
org.springframework.beans 内の PropertyEditorRegistry サブインターフェース修飾子と型インターフェース説明interfaceSpring の低レベル JavaBeans インフラストラクチャの主要インターフェース。interfacePropertyAccessor の構成メソッドをカプセル化するインターフェース。PropertyEditorRegistry を実装している org.springframework.beans のクラス修飾子と型クラス説明classすべての典型的な使用例に必要なインフラストラクチャを提供する基本的なConfigurablePropertyAccessor。classPropertyAccessorインターフェースの抽象的な実装。classデフォルトのBeanWrapper実装。これは、すべての一般的なユースケースで十分なはずです。classインスタンスフィールドに直接アクセスするConfigurablePropertyAccessor実装。classPropertyEditorRegistryインターフェースの基本実装。class特定のターゲットオブジェクトで動作しないTypeConverterインターフェースの単純な実装。classパッケージプライベートデリゲートを使用したTypeConverterインターフェースの基本実装。型 PropertyEditorRegistry のパラメーターを持つ org.springframework.beans のメソッド修飾子と型メソッド説明protected voidPropertyEditorRegistrySupport.copyCustomEditorsTo(PropertyEditorRegistry target, StringSE nestedProperty) このインスタンスに登録されているカスタムエディターを特定のターゲットレジストリにコピーします。voidPropertyEditorRegistrar.registerCustomEditors(PropertyEditorRegistry registry) 指定されたPropertyEditorRegistryでカスタムPropertyEditorsSE を登録します。org.springframework.beans.factory.config 内の PropertyEditorRegistry 使用
型 PropertyEditorRegistry のパラメーターを持つ org.springframework.beans.factory.config のメソッド修飾子と型メソッド説明voidConfigurableBeanFactory.copyRegisteredEditorsTo(PropertyEditorRegistry registry) この BeanFactory に登録されているカスタムエディターを使用して、指定された PropertyEditorRegistry を初期化します。org.springframework.beans.factory.support 内の PropertyEditorRegistry 使用
型 PropertyEditorRegistry のパラメーターを持つ org.springframework.beans.factory.support のメソッド修飾子と型メソッド説明voidAbstractBeanFactory.copyRegisteredEditorsTo(PropertyEditorRegistry registry) protected voidAbstractBeanFactory.registerCustomEditors(PropertyEditorRegistry registry) この BeanFactory に登録されているカスタムエディターを使用して、指定された PropertyEditorRegistry を初期化します。org.springframework.beans.support 内の PropertyEditorRegistry 使用
型 PropertyEditorRegistry のパラメーターを持つ org.springframework.beans.support のメソッド修飾子と型メソッド説明voidResourceEditorRegistrar.registerCustomEditors(PropertyEditorRegistry registry) 指定されたregistryに ResourceEditor、InputStreamEditor、InputSourceEditor、FileEditor、URLEditor、URIEditor、ClassEditor、ClassArrayEditor のリソースエディターを入力します。org.springframework.validation 内の PropertyEditorRegistry 使用
PropertyEditorRegistry を実装している org.springframework.validation のクラス修飾子と型クラス説明classコンストラクターと setter インジェクションを介してターゲットオブジェクトにプロパティ値を適用できるようにするバインダー。また、検証とバインディング結果の分析もサポートします。修飾子と型メソッド説明AbstractBindingResult.getPropertyEditorRegistry()この実装はnullを返します。AbstractPropertyBindingResult.getPropertyEditorRegistry()基になる PropertyAccessor を返します。BindException.getPropertyEditorRegistry()BindingResult.getPropertyEditorRegistry()基になる PropertyEditorRegistry を返します。protected PropertyEditorRegistryDataBinder.getPropertyEditorRegistry()このバインダーの BindingResult の基になる TypeConverter を返します。org.springframework.web.bind 内の PropertyEditorRegistry 使用
PropertyEditorRegistry を実装している org.springframework.web.bind のクラス修飾子と型クラス説明classマルチパートファイルのサポートを含む、サーブレットリクエストパラメーターから JavaBeans へのデータバインディングを実行する特別なDataBinder。classWeb リクエストパラメーターから JavaBean オブジェクトへのデータバインディング用の特別なDataBinder。org.springframework.web.bind.support 内の PropertyEditorRegistry 使用
修飾子と型クラス説明classURL クエリパラメーターまたはリクエストデータ内のフォームデータから Java オブジェクトへのデータバインディングを実行するための特殊なDataBinder。classマルチパートファイルのサポートを含む、Web リクエストパラメーターから JavaBeans へのデータバインディングを実行する特別なDataBinder。org.springframework.web.servlet.mvc.method.annotation 内の PropertyEditorRegistry 使用