How can I define relative path in gemfire.propetties?
Example:
javax.net.ssl.keyStoreType=jks
javax.net.ssl.keyStore=a.keystore.jks
javax.net.ssl.keyStorePassword=sitpassword
And I initliaze gemfire client from gemfire.properties as
<util:properties
id="gemfire.properties"location="classpath:SIT/gemfire.properties"
/>
<!-- NB, client cache must be defined before the pool, else it won't start
<gfe:client-cacheid="gemfire-cache"pool-name="gfPool"
cache-xml-location="classpath:cache.xml"properties-ref="gemfire.properties"/>
But i get error a.keystore.jks not found unless I specify the fullpath. How do I make it work?