Class GoldenLeafApplication

java.lang.Object
com.goldenleaf.shop.GoldenLeafApplication

@SpringBootApplication public class GoldenLeafApplication extends Object
Main class for the GoldenLeaf Spring Boot application.

This class contains the entry point of the application and is annotated with SpringBootApplication, which enables component scanning, auto-configuration, and property support.

Running this class will start the embedded server and launch the application context.

See Also:
  • SpringBootApplication
  • SpringApplication
  • Constructor Details

    • GoldenLeafApplication

      public GoldenLeafApplication()
  • Method Details

    • main

      public static void main(String[] args)
      The main method that serves as the entry point of the Spring Boot application.
      Parameters:
      args - command-line arguments passed to the application
      See Also:
      • SpringApplication.run(Class, String[])