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
directory.
|
Modifier and Type | Method and Description |
---|---|
protected boolean |
JarLauncher.isNestedArchive(Archive.Entry entry) |
protected abstract boolean |
ExecutableArchiveLauncher.isNestedArchive(Archive.Entry entry)
Determine if the specified entry is a nested item that should be added to the
classpath.
|
boolean |
WarLauncher.isNestedArchive(Archive.Entry entry) |
protected boolean |
JarLauncher.isSearchCandidate(Archive.Entry entry) |
protected boolean |
ExecutableArchiveLauncher.isSearchCandidate(Archive.Entry entry)
Determine if the specified entry is a candidate for further searching.
|
protected boolean |
WarLauncher.isSearchCandidate(Archive.Entry entry) |
Modifier and Type | Method and Description |
---|---|
Iterator<Archive.Entry> |
JarFileArchive.iterator()
Deprecated.
|
Iterator<Archive.Entry> |
Archive.iterator()
Deprecated.
since 2.3.0 for removal in 2.5.0 in favor of using
JarFile to access entries and
Archive.getNestedArchives(EntryFilter, EntryFilter) for accessing nested archives. |
Iterator<Archive.Entry> |
ExplodedArchive.iterator()
Deprecated.
|
default Spliterator<Archive.Entry> |
Archive.spliterator()
Deprecated.
since 2.3.0 for removal in 2.5.0 in favor of using
JarFile to access entries and
Archive.getNestedArchives(EntryFilter, EntryFilter) for accessing nested archives. |
Modifier and Type | Method and Description |
---|---|
protected Archive |
JarFileArchive.getNestedArchive(Archive.Entry entry) |
protected Archive |
ExplodedArchive.getNestedArchive(Archive.Entry entry) |
boolean |
Archive.EntryFilter.matches(Archive.Entry entry)
Apply the jar entry filter.
|
Modifier and Type | Method and Description |
---|---|
default void |
Archive.forEach(Consumer<? super Archive.Entry> action)
Deprecated.
since 2.3.0 for removal in 2.5.0 in favor of using
JarFile to access entries and
Archive.getNestedArchives(EntryFilter, EntryFilter) for accessing nested archives. |