738 B
738 B
附录D.3.1 Launcher manifest
你需要指定一个合适的Launcher作为META-INF/MANIFEST.MF
的Main-Class
属性。你实际想要启动的类(也就是你编写的包含main方法的类)需要在Start-Class
属性中定义。
例如,这里有个典型的可执行jar文件的MANIFEST.MF:
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.mycompany.project.MyApplication
对于一个war文件,它可能是这样的:
Main-Class: org.springframework.boot.loader.WarLauncher
Start-Class: com.mycompany.project.MyApplication
注:你不需要在manifest文件中指定Class-Path
实体,classpath会从嵌套的jars中被推导出来。