Registry / config / spring-boot-configuration-processor

spring-boot-configuration-processor

JSON →
library4.0.6javamavenunverified

Generates metadata for custom configuration properties in Spring Boot applications, enabling IDE autocompletion.

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>4.0.6</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-BOOT-CONFIG
S
spring-boot-configuration-processor
configjavav4.0.6
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ConfigurationProperties
org.springframework.boot.context.properties.ConfigurationProperties

Shows a configuration properties class that will be processed by the annotation processor.

import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(prefix = "app") public class AppProperties { private String name; public String getName() { return name; } public void setName(String name) { this.name = name; } }
Debug
Known issues
gotchaThe annotation processor must be added as a dependency with 'annotationProcessor' scope in Maven/Gradle.
fix
Add the dependency with annotationProcessor scope (Maven: <scope>provided</scope>).
affects: *
Upgrade
Version history
4.0.6latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
46 hits · last 30 days
node
32
OpenAI (training)
1
Resources
spring-boot-configuration-processor — mvn dependency:get spring-boot-configuration-processor · libregistry