About 3,060,000 results
Open links in new tab
  1. Auto-configuration :: Spring Boot

    Auto-configuration packages are the packages that various auto-configured features look in by default when scanning for things such as entities and Spring Data repositories.

  2. Spring Boot - Auto-configuration - GeeksforGeeks

    Jul 23, 2025 · Spring Boot auto-configures a pre-set of the required dependencies without a need to configure them manually. This greatly helps and can be seen when we want to create a stand-alone …

  3. A Custom Auto-Configuration with Spring Boot | Baeldung

    Dec 16, 2024 · A quick, practical guide to creating a custom auto-configuration in Spring Boot.

  4. A Developer's Guide to Spring Boot Auto-Configuration

    Sep 22, 2025 · Spring Boot might auto-configure a component you don't need or want, or it might conflict with a custom bean you've defined. For example, it might try to set up an in-memory H2 database …

  5. Spring Boot Auto-Configuration Explained: What Happens When …

    Dec 31, 2025 · Auto-Configuration is one of the most powerful features of Spring Boot. It refers to the mechanism where Spring Boot automatically configures your application based on: Because of this, …

  6. Spring Boot Auto-Configuration Explained | Useful Codes

    Dec 28, 2024 · In this article, we explored Spring Boot Auto-Configuration, a feature that simplifies the setup of Spring applications by automatically configuring beans based on the application's classpath.

  7. Spring Boot Auto-Configuration & Starters - Techoral

    Spring Boot's auto-configuration and starters are two of its most powerful features, designed to simplify application development by automatically configuring your application based on its dependencies. …

  8. Understanding Spring Boot Auto Configuration | Coding Shuttle

    Dec 27, 2024 · Autoconfiguration refers to the mechanism that automatically configures Spring applications based on the dependencies present on the classpath and other application-specific …

  9. What is Spring Boot Auto Configuration?

    Sep 6, 2025 · Spring Boot Auto Configuration helps reduce this boilerplate by automatically configuring many of these components for you. A typical configuration of a Dispatcher Servlet in a Spring web …

  10. Spring Boot Auto Configuration | Spring Boot | Spring Framework …

    Spring Boot Auto-Configuration simplifies the configuration of Spring applications by automatically configuring Spring and third-party libraries based on the dependencies present on the classpath.