复杂的java应用,或者library,最终会以jar文件形式发布。
jar分为两种:
FatJar (JDK自己的)
包含应用程序所有内容,包括配置等资源文件、依赖其它lib的jar文件
mvn package默认打出来的包。平常我们我们打的包,都是FatJar
FatJar存在形式,如下:
- jar包类型。通过pom.xml中jar指定
- war包类型。通过pom.xml中war指定
ThinJar(Spring提供的)
仅包含核心代码。其它资源文件、依赖其它lib的jar文件。
ThinJar启动时,通过-Dloader.path=${resources_path},${lib_path}
来指定并引用。
这种启动方式,是PropertiesLauncher机制。
PropertiesLauncher,默认从当前目录或者classpath,寻找loader.properties文件。
也可以通过System properties变量loader.config.location来设置loader.properties文件的位置。
如果文件不存在,也可以通过System properties进行相关设置
loader.properties文件内容主要包含两个变量,如下:
- loader.path: a comma-separated list of directories (containing file resources and/or nested archives in *.jar or *.zip or archives) or archives to append to the classpath. BOOT-INF/classes,BOOT-INF/lib in the application archive are always used
- loader.main: the main method to delegate execution to once the class loader is set up. No default, but will fall back to looking for a Start-Class in a MANIFEST.MF, if there is one in ${loader.home}/META-INF.
ThinJar存在形式,如下(同FatJar):
- jar包类型。通过pom.xml中jar指定
- war包类型。通过pom.xml中war指定
另外,还需要在pom.xml中spring-boot-maven-plugin进行配置:文章来源:https://www.toymoban.com/news/detail-702262.html
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<fork>true</fork>
<layout>ZIP</layout>
</configuration>
</plugin>xml
关于PropertiesLauncher,请参考文章来源地址https://www.toymoban.com/news/detail-702262.html
- executable-jar Doc
- PropertiesLauncher API
到了这里,关于关于java jar包说明的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!