I was wondering if there is a way to do this?
I know how to set them through the use of
-Dpropertyname=property
Can I view this in the debug view within eclipse?
You can go to the Expression view and create a new expression with the following text:
System.getProperty("propertyname")
To show the Expression view: Click on Window Menu -> Show View -> Others... -> Type Expr -> Click OK.
Although there is no direct way of doing this, that I know of, you can always print it out with
System.out.println(System.getProperty("yourProperty"));
You can then view the property in the console. Although this is not a very good way it seems to be the only one.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With