Difference between Spring boot 2.5.0 generated *jar and *-plain.jar?
app.jar is the archive produced by the bootJar task. This is a Spring Boot fat jar that contains all of the module’s dependencies as well as its classes and resources. It can be run using java -jar. app-plain.jar is the archive produced by the jar task. This is a plain or standard jar file that … Read more