Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.
指定されたコンポーネントとプロパティセットに関連する一連のプロパティを返します。
Properties ServerContext.getProperties(String component, String set)
component コンポーネント
set プロパティセット
一連のプロパティ。空の場合があります。
これらのプロパティは、ml_property システムテーブルに格納されます。詳細については、ml_add_property システムプロシージャーを参照してください。
次の例では、ServerContext インスタンスのすべてのプロパティをリストする方法を示します。
import java.util.*; ServerContext serverContext; PrintStream out Properties prop = serverContext.getProperties(); prop.list(out);