Yesterday I came across a system property in Java -Djsse.enableCBCProtection=false which was added in JDK 6u30. I never knew about this till yesterday.
So can anyone tell me where I can find the list of system properties supported in a Java version along with its meaning?
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.