Advertisement
alexandrecoussy

Untitled

Apr 4th, 2022
813
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1. package com.amfinesoft.epr.stocks.reporting;
  2.  
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.SpringBootApplication;
  5.  
  6. @SpringBootApplication
  7. public class Main {
  8.  
  9.   public static void main(final String[] args) {
  10.     SpringApplication application = new SpringApplication(Main.class);
  11.     System.exit(SpringApplication.exit(application.run(args)));
  12.   }
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement