I have this file structure;
Then on my beans xml config I have;
But when I start the server up I get a FileNotFoundException /store/thestore.jks
What am I missing? Thanks in advance.
I have this file structure;
Then on my beans xml config I have;
But when I start the server up I get a FileNotFoundException /store/thestore.jks
What am I missing? Thanks in advance.
Copyright © 2021 Jogjafile Inc.


According to source code here com.noelios.restlet.util.DefaultSslContextFactory.createSslContext()
It's using
FileInputStream, which means it will try to read file from the file system and not from the JAR itself.You have to put
jksfile outside JAR and provide absolute path to it.For example