Package org.springframework.boot.loader

System that allows self contained JAR/WAR archives to be launched using java -jar.

See:
          Description

Interface Summary
Archive An archive that can be launched by the Launcher.
Archive.Entry Represents a single entry in the archive.
Archive.EntryFilter A filter for archive entries.
 

Class Summary
ExplodedArchive Archive implementation backed by an exploded archive directory.
JarFileArchive Archive implementation backed by a RandomAccessJarFile.
JarLauncher Launcher for JAR based archives.
LaunchedURLClassLoader ClassLoader used by the Launcher.
Launcher Base class for launchers that can start an application with a fully configured classpath.
MainMethodRunner Utility class that used by Launchers to call a main method.
WarLauncher Launcher for WAR based archives.
 

Package org.springframework.boot.loader Description

System that allows self contained JAR/WAR archives to be launched using java -jar. Archives can include nested packaged dependency JARs (there is no need to create shade style jars) and are executed without unpacking. The only constraint is that nested JARs must be stored in the archive uncompressed.

See Also:
JarLauncher, WarLauncher


Copyright © 2013. All Rights Reserved.