All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.almis.awe.test.ReactBootApplication Maven / Gradle / Ivy

There is a newer version: 0.0.13
Show newest version
package com.almis.awe.test;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;

/**
 * Main class that launches the application.
 */
@SpringBootApplication
public class ReactBootApplication extends SpringBootServletInitializer {

  /**
   * The goal of this method is only for running the application as a standalone application, setting up an embedded server.
   *
   * @param args Application arguments
   */
  public static void main(String[] args) {
    SpringApplication.run(ReactBootApplication.class, args);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy