From 637eb590494e130039a37d2746950d538e0752cd Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Sun, 10 May 2015 22:49:27 +0800 Subject: [PATCH] Update D.3. Launching executable jars.md --- X. Appendices/D.3. Launching executable jars.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/X. Appendices/D.3. Launching executable jars.md b/X. Appendices/D.3. Launching executable jars.md index fc2adff..92af347 100644 --- a/X. Appendices/D.3. Launching executable jars.md +++ b/X. Appendices/D.3. Launching executable jars.md @@ -2,5 +2,4 @@ `org.springframework.boot.loader.Launcher`类是个特殊的启动类,用于一个可执行jars的主要入口。它实际上就是你jar文件的`Main-Class`,并用来设置一个合适的`URLClassLoader`,最后调用你的`main()`方法。 -这里有3个启动器子类,JarLauncher,WarLauncher和PropertiesLauncher。它们的作用是从嵌套的jar或war文件 -目录中(相对于显示的从classpath)加载资源(.class文件等)。在`[Jar|War]Launcher`情况下,嵌套路径是固定的(`lib/*.jar`和war的`lib-provided/*.jar`),所以如果你需要很多其他jars只需添加到那些位置即可。PropertiesLauncher默认查找你应用存档的`lib/`目录,但你可以通过设置环境变量`LOADER_PATH`或application.properties中的`loader.path`来添加其他的位置(逗号分割的目录或存档列表)。 +这里有3个启动器子类,JarLauncher,WarLauncher和PropertiesLauncher。它们的作用是从嵌套的jar或war文件目录中(相对于显示的从classpath)加载资源(.class文件等)。在`[Jar|War]Launcher`情况下,嵌套路径是固定的(`lib/*.jar`和war的`lib-provided/*.jar`),所以如果你需要很多其他jars只需添加到那些位置即可。PropertiesLauncher默认查找你应用存档的`lib/`目录,但你可以通过设置环境变量`LOADER_PATH`或application.properties中的`loader.path`来添加其他的位置(逗号分割的目录或存档列表)。