Registry / config / spring-boot-autoconfigure

spring-boot-autoconfigure

JSON →
library4.0.6javamavenunverified

Provides auto-configuration support for Spring Boot applications, automatically configuring beans based on classpath dependencies.

<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>4.0.6</version> </dependency>
INSTALL
IMPORT
SIG · SPRING-BOOT-AUTOCO
S
spring-boot-autoconfigure
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.

EnableAutoConfiguration
org.springframework.boot.autoconfigure.EnableAutoConfiguration

Shows a minimal Spring Boot application with auto-configuration enabled.

import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class MyApplication { public static void main(String[] args) { SpringApplication.run(MyApplication.class, args); } }
Debug
Known issues
gotchaAuto-configuration can cause unexpected bean creation; use @EnableAutoConfiguration(exclude=...) to disable specific auto-configurations.
fix
Exclude unwanted auto-configuration classes using the exclude attribute or spring.autoconfigure.exclude property.
affects: *
Upgrade
Version history
4.0.6latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
49 hits · last 30 days
node
34
OpenAI (training)
1
Resources
spring-boot-autoconfigure — mvn dependency:get spring-boot-autoconfigure · libregistry