Uses of Interface
org.springframework.boot.loader.archive.Archive
Packages that use Archive
Package
Description
System that allows self-contained JAR/WAR archives to be launched using
java -jar
.Abstraction over logical Archives be they backed by a JAR file or unpacked into a
directory.
-
Uses of Archive in org.springframework.boot.loader
Methods in org.springframework.boot.loader that return ArchiveModifier and TypeMethodDescriptionprotected final Archive
Launcher.createArchive()
protected final Archive
ExecutableArchiveLauncher.getArchive()
protected Archive
Launcher.getArchive()
Return the root archive.Methods in org.springframework.boot.loader that return types with arguments of type ArchiveModifier and TypeMethodDescriptionExecutableArchiveLauncher.getClassPathArchivesIterator()
Launcher.getClassPathArchivesIterator()
Returns the archives that will be used to construct the class path.PropertiesLauncher.getClassPathArchivesIterator()
Methods in org.springframework.boot.loader with parameters of type ArchiveModifier and TypeMethodDescriptionprotected org.springframework.boot.loader.ClassPathIndexFile
ExecutableArchiveLauncher.getClassPathIndex
(Archive archive) Method parameters in org.springframework.boot.loader with type arguments of type ArchiveModifier and TypeMethodDescriptionprotected ClassLoader
ExecutableArchiveLauncher.createClassLoader
(Iterator<Archive> archives) protected ClassLoader
Launcher.createClassLoader
(Iterator<Archive> archives) Create a classloader for the specified archives.protected ClassLoader
PropertiesLauncher.createClassLoader
(Iterator<Archive> archives) protected void
ExecutableArchiveLauncher.postProcessClassPathArchives
(List<Archive> archives) Called to post-process archive entries before they are used.Constructors in org.springframework.boot.loader with parameters of type ArchiveModifierConstructorDescriptionprotected
ExecutableArchiveLauncher
(Archive archive) protected
JarLauncher
(Archive archive) LaunchedURLClassLoader
(boolean exploded, Archive rootArchive, URL[] urls, ClassLoader parent) Create a newLaunchedURLClassLoader
instance.protected
WarLauncher
(Archive archive) -
Uses of Archive in org.springframework.boot.loader.archive
Classes in org.springframework.boot.loader.archive that implement ArchiveModifier and TypeClassDescriptionclass
Archive
implementation backed by an exploded archive directory.class
Methods in org.springframework.boot.loader.archive that return ArchiveModifier and TypeMethodDescriptionprotected Archive
ExplodedArchive.getNestedArchive
(Archive.Entry entry) protected Archive
JarFileArchive.getNestedArchive
(Archive.Entry entry) Methods in org.springframework.boot.loader.archive that return types with arguments of type ArchiveModifier and TypeMethodDescriptionArchive.getNestedArchives
(Archive.EntryFilter searchFilter, Archive.EntryFilter includeFilter) Returns nestedArchive
s for entries that match the specified filters.ExplodedArchive.getNestedArchives
(Archive.EntryFilter searchFilter, Archive.EntryFilter includeFilter) JarFileArchive.getNestedArchives
(Archive.EntryFilter searchFilter, Archive.EntryFilter includeFilter)