When you have a multi project configuration for your maven based application, manually updating the project version after each release is not that easy. There will be at least 2 references to the project version number and it will give unexpected error if you forget to update version for one…
Tag: Java
3rd Party Certificate Management Tool for Java
Keytools is the default certificate management tool provided by Oracle in JDK. Some users feels it as inconvenient as there is no UI for this command. One solution is to use 3rd party open source tool KeyStore Explorer which provide very easy to use UI. KeyStore Explorer
How to add SSL certificate to JRE
If you are getting SSLHandshakeException while accessing secure URLs, you will need to add the SSL certificate for that URL to your JRE. Use below steps to add SSL certificate to JRE (Checkout Downloading SSL Certificate From a URL if you are looking for steps to download the SSL certificate…
Reading file from resources folder
Below code can be used to read the files from resources folder of a Spring Boot application.
Apache Tomcat β Encrypting keystore password
By default SSL keystore password is used as plain text in server.xml file. For example: If required we can implement our own encryption to secure this password. In this post Iβm not explaining anything about encryption/decryption, but a solution to implement decryption at the time of tomcat reading keystore file….
Deploying spring boot application in JBoss server
Spring boot web applications with its default configurations are pretty easy to deploy in embedded tomcat server. We just need to run main method and it will start the web application. But it is not always the case as we might be developing the applications which are supposed to deploy…
Apache Tomcat – Encrypting keystore password
By default SSL keystore password is used as plain text in server.xml file