昨日、-Djsse.enableCBCProtection=false
JDK6u30で追加されたJavaのシステムプロパティに出くわしました。私は昨日までこれについて知りませんでした。
では、Javaバージョンでサポートされているシステムプロパティのリストとその意味をどこで見つけることができるかを誰かに教えてもらえますか?
昨日、-Djsse.enableCBCProtection=false
JDK6u30で追加されたJavaのシステムプロパティに出くわしました。私は昨日までこれについて知りませんでした。
では、Javaバージョンでサポートされているシステムプロパティのリストとその意味をどこで見つけることができるかを誰かに教えてもらえますか?
これを使用して、サポートされているすべてのプロパティのリストを取得します。
Properties props = System.getProperties();
System.out.println(props);
こちらもご覧ください。ほとんどが言及されています。
There is not a single place with such a list. System properties are used all over the place by various parts of the Java environment, so you have to consult the documentation for the part you are using to see about their properties. For example the Java networking documentation describes several properties used by the URLConnection mechanism.