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: Spring Boot
Reading file from resources folder
Below code can be used to read the files from resources folder of a Spring Boot application.
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…