Package | Description |
---|---|
org.springframework.boot.loader |
System that allows self-contained JAR/WAR archives to be launched using
java -jar . |
org.springframework.boot.loader.archive |
Abstraction over logical Archives be they backed by a JAR file or unpacked into a
folder.
|
Modifier and Type | Method and Description |
---|---|
protected Archive |
Launcher.createArchive() |
protected Archive |
ExecutableArchiveLauncher.getArchive() |
Modifier and Type | Method and Description |
---|---|
protected List<Archive> |
PropertiesLauncher.getClassPathArchives() |
protected abstract List<Archive> |
Launcher.getClassPathArchives()
Returns the archives that will be used to construct the class path.
|
protected List<Archive> |
ExecutableArchiveLauncher.getClassPathArchives() |
Modifier and Type | Method and Description |
---|---|
protected ClassLoader |
PropertiesLauncher.createClassLoader(List<Archive> archives) |
protected ClassLoader |
Launcher.createClassLoader(List<Archive> archives)
Create a classloader for the specified archives.
|
protected void |
ExecutableArchiveLauncher.postProcessClassPathArchives(List<Archive> archives)
Called to post-process archive entries before they are used.
|
Constructor and Description |
---|
ExecutableArchiveLauncher(Archive archive) |
JarLauncher(Archive archive) |
WarLauncher(Archive archive) |
Modifier and Type | Class and Description |
---|---|
class |
ExplodedArchive
Archive implementation backed by an exploded archive directory. |
class |
JarFileArchive
|
Modifier and Type | Method and Description |
---|---|
protected Archive |
JarFileArchive.getNestedArchive(Archive.Entry entry) |
protected Archive |
ExplodedArchive.getNestedArchive(Archive.Entry entry) |
Modifier and Type | Method and Description |
---|---|
List<Archive> |
JarFileArchive.getNestedArchives(Archive.EntryFilter filter) |
List<Archive> |
ExplodedArchive.getNestedArchives(Archive.EntryFilter filter) |
List<Archive> |
Archive.getNestedArchives(Archive.EntryFilter filter)
Returns nested
Archive s for entries that match the specified filter. |
Copyright © 2018 Pivotal Software, Inc.. All rights reserved.