In ehcache2, I stored my properties externally and read them using a input stream which was an available option for configuring this, but the same option isn't present in ehcache3. ehcache2 code which works: https://www.ehcache.org/documentation/2.8/code-samples.html
Create a CacheManager from a configuration in an InputStream.
try {
CacheManager manager = CacheManager.newInstance(fis);
} finally {
fis.close();```
Is there any work around for the same in ehcache3?