Today, we'd like to continue the topic about building microservices and move from Fat (Uber) JAR to Thin JAR for Spring Boot projects. Thin JAR represents compiled and packaged application code (business logic) of the project together with the third-party libraries it depends on. Compared to Fat, it does not contain application server runtime by default, so the size of a Thin archive is much smaller. The runtime and dependencies are automatically downloaded during the first launch and stored locally in the ~/.m2/repository. To showcase the process of building a framework inside the Java Engine with Thin JAR for running microservice architecture, we'll use a pre-configured package of Maven and the popular Spring Boot.
I guess you came to this post by searching similar kind of issues in any of the search engine and hope that this resolved your problem. If you find this tips useful, just drop a line below and share the link to others and who knows they might find it useful too.
Stay tuned to my blog, twitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletter to your registered email address. We will not share your email address to anybody as we respect privacy.
java,tutorial,microservices,spring boot,maven
Stay tuned to my blog, twitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletter to your registered email address. We will not share your email address to anybody as we respect privacy.
This article is related to
java,tutorial,microservices,spring boot,maven
0 Comments