Class StandardLayers
java.lang.Object
org.springframework.boot.loader.tools.StandardLayers
Base class for the standard set of
Layers
. Defines the following layers:
- "dependencies" - For non snapshot dependencies
- "spring-boot-loader" - For classes from
spring-boot-loader
used to launch a fat jar - "snapshot-dependencies" - For snapshot dependencies
- "application" - For application classes and resources
- Since:
- 2.3.0
- Author:
- Madhura Bhave, Phillip Webb
-
Field Details
-
DEPENDENCIES
The dependencies layer. -
SPRING_BOOT_LOADER
The spring boot loader layer. -
SNAPSHOT_DEPENDENCIES
The snapshot dependencies layer. -
APPLICATION
The application layer.
-
-
Constructor Details
-
StandardLayers
public StandardLayers()
-
-
Method Details
-
iterator
Description copied from interface:Layers
Return the jar layers in the order that they should be added (starting with the least frequently changed layer). -
stream
Description copied from interface:Layers
Return a stream of the jar layers in the order that they should be added (starting with the least frequently changed layer).
-