getSelector() — spring-boot Function Reference
Architecture documentation for the getSelector() function in CustomLayersProvider.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD c40bb1cf_52c5_84fd_0eb7_beffe93453c8["getSelector()"] f0223559_fca5_0ab1_8ec1_65dabb509637["getApplicationSelectors()"] f0223559_fca5_0ab1_8ec1_65dabb509637 -->|calls| c40bb1cf_52c5_84fd_0eb7_beffe93453c8 11efb941_46e1_c731_b592_b04048e8a6cf["getChildNodeTextContent()"] c40bb1cf_52c5_84fd_0eb7_beffe93453c8 -->|calls| 11efb941_46e1_c731_b592_b04048e8a6cf style c40bb1cf_52c5_84fd_0eb7_beffe93453c8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
build-plugin/spring-boot-maven-plugin/src/main/java/org/springframework/boot/maven/CustomLayersProvider.java lines 120–125
private <T> ContentSelector<T> getSelector(Element element, Function<String, ContentFilter<T>> filterFactory) {
Layer layer = new Layer(element.getAttribute("layer"));
List<String> includes = getChildNodeTextContent(element, "include");
List<String> excludes = getChildNodeTextContent(element, "exclude");
return new IncludeExcludeContentSelector<>(layer, includes, excludes, filterFactory);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does getSelector() do?
getSelector() is a function in the spring-boot codebase.
What does getSelector() call?
getSelector() calls 1 function(s): getChildNodeTextContent.
What calls getSelector()?
getSelector() is called by 1 function(s): getApplicationSelectors.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free