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-loaderused to launch a fat jar
- "snapshot-dependencies" - For snapshot dependencies
- "application" - For application classes and resources
- Since:
- 2.3.0
- 
Field Details- 
DEPENDENCIESThe dependencies layer.
- 
SPRING_BOOT_LOADERThe spring boot loader layer.
- 
SNAPSHOT_DEPENDENCIESThe snapshot dependencies layer.
- 
APPLICATIONThe application layer.
 
- 
- 
Constructor Details- 
StandardLayerspublic StandardLayers()
 
- 
- 
Method Details- 
iteratorDescription copied from interface:LayersReturn the jar layers in the order that they should be added (starting with the least frequently changed layer).
- 
streamDescription copied from interface:LayersReturn a stream of the jar layers in the order that they should be added (starting with the least frequently changed layer).
 
-