Reputation: 606
I want to read system-properties for appengine-web.xml
in my Java code. I have tried using System.getProperty()
but it did not work.
Upvotes: 1
Views: 1470
Reputation: 10069
Set values like below in appengine-web.xml
. Then you can get using System.getProperty()
<system-properties>
<property name="myapp.maximum-message-length" value="140" />
</system-properties>
Reference :
Upvotes: 3