score:1

Accepted answer

you need to assign keystore path on server.xml of tomcat.

<connector 
     port="8443" maxthreads="200"
     scheme="https" secure="true" sslenabled="true"
     keystorefile="${path of key stokre}/keystore.jks" /*put the keystoer path*/
     keystorepass="changeit"
     clientauth="false" sslprotocol="tls"/>

Related Query

More Query from same tag