how to use non password protected (.p12) ssl certificate in spring boot
So after all the research, it seems java key store needs a password. So I had to ignore the .p12 which we had without password. And using the pem certificate, we converted it to .p12 with password. And I am doing this from spring code where I am passing random password to shell script which generates .p12 from .pem using that password.
And then I am passing the same password to ssl properties from the code.
one drawback is I have to regenerate .p12 from .pem every time application is restarted but this is how I prevent static password.