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 |
JarLauncher.postProcessClassPathArchives(List<Archive> archives) |
protected void |
ExecutableArchiveLauncher.postProcessClassPathArchives(List<Archive> archives)
Called to post-process archive entries before they are used.
|
Modifier and Type | Class and Description |
---|---|
class |
ExplodedArchive
Archive implementation backed by an exploded archive directory. |
class |
FilteredArchive
Decorator to apply an
Archive.EntryFilter to an existing Archive . |
class |
JarFileArchive
|
Modifier and Type | Method and Description |
---|---|
Archive |
JarFileArchive.getFilteredArchive(Archive.EntryRenameFilter filter) |
Archive |
FilteredArchive.getFilteredArchive(Archive.EntryRenameFilter filter) |
Archive |
ExplodedArchive.getFilteredArchive(Archive.EntryRenameFilter filter) |
abstract Archive |
Archive.getFilteredArchive(Archive.EntryRenameFilter filter)
Returns a filtered version of the archive.
|
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> |
FilteredArchive.getNestedArchives(Archive.EntryFilter filter) |
List<Archive> |
ExplodedArchive.getNestedArchives(Archive.EntryFilter filter) |
abstract List<Archive> |
Archive.getNestedArchives(Archive.EntryFilter filter)
Returns nested
Archive s for entries that match the specified filter. |
Constructor and Description |
---|
FilteredArchive(Archive parent,
Archive.EntryFilter filter) |
Copyright © 2015 Pivotal Software, Inc.. All rights reserved.