Class BudgetingApp

java.lang.Object
no.idata1002.group19.BudgetingApp
All Implemented Interfaces:
org.springframework.boot.CommandLineRunner

@SpringBootApplication public class BudgetingApp extends Object implements org.springframework.boot.CommandLineRunner

Budgeting App

This class is the main class of the application. It is responsible for launching the Spring Boot application and initialize the processes necessary for service provisions and database administration.

Since:
23.03.2023
Version:
23.03.2023
Author:
IDATA1002_2023_19
See Also:
  • Constructor Details

    • BudgetingApp

      public BudgetingApp()
  • Method Details

    • main

      public static void main(String[] args)
      Main method which is called upon application startup.

      Responsible for launching the Spring application.

      Parameters:
      args - sequence of arguments provided upon launch execution.
    • run

      public void run(String... args) throws Exception
      Initializing method inherited from the CommandLineRunner interface.

      Logs initial status of the application instance.

      Specified by:
      run in interface org.springframework.boot.CommandLineRunner
      Parameters:
      args - sequence of arguments provided upon launch execution.
      Throws:
      Exception - upon error during execution.