Spring / Spring CredHub Interview questions
What are the core modules of Spring CredHub?
Spring CredHub is split across a small set of Maven artifacts, each with a distinct job:
- spring-credhub-core — the Java bindings for the CredHub API: templates, operations interfaces, and request/response types.
- spring-credhub-starter — the Spring Boot starter that pulls in the core module and auto-configures a
CredHubOperationsbean from application properties. - Reactive support — enabled by adding
spring-boot-starter-webflux, which lets the same auto-configuration also expose aReactiveCredHubOperationsbean.
Most applications only need the starter; the core module is pulled in transitively and is only added directly by projects that want to assemble their own CredHubTemplate without Boot auto-configuration.
More Related questions...