Wondering what happens when I declare a custom property in java using -D command. I came to know that other system properties are not stored, instead generated by JVM. So what will happen to the property that I created? Can I use it next time while I compile the code without declaring again?
example: java -D"custom_key"="custom_value" some_class