I am writing a REST service using Apache Wink. My service needs some server side configurations like defining some System properties etc. The user of the rest service need not know these and provide any value for these. I would like to understand what is the ideal/best way to initialize this properties in a REST service. Should I do this configuration in the constructor of the Resource class? or some place else?
Thanks.