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

    The @EnableAutoConfiguration annotation (either directly or through its presence on @SpringBootApplication) determines the default auto-configuration package. Additional packages …

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

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

  3. 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 …

  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 | 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.

  6. Creating Your Own Auto-configuration :: Spring Boot

    We first cover what you need to know to build your own auto-configuration and then we move on to the typical steps required to create a custom starter. Classes that implement auto-configuration are …

  7. What is Spring Boot Auto Configuration?

    Sep 6, 2025 · When you run StudentServicesApplication.java as a Java application, you will notice several important messages in the log that demonstrate Spring Boot’s auto-configuration at work.

  8. Spring Boot - Create a Custom Auto-Configuration - GeeksforGeeks

    Jul 23, 2025 · In a spring application, Spring Boot auto-configuration helps to automatically configure by checking with the jar dependencies that we have added.

  9. Understanding Spring Boot Auto Configuration | Coding Shuttle

    Dec 27, 2024 · In this article, we delved into the concept of Auto Configuration in Spring Boot, examining how it simplifies the development process by automatically setting up applications based on the …

  10. Spring Boot Custom Auto Configuration: A Comprehensive Guide

    In this tutorial, you learned how to create custom auto-configuration in Spring Boot. By following these steps, you can streamline your application's configuration process and create reusable components …