rebue.scx.gateway.GatewayApplication Maven / Gradle / Ivy
The newest version!
package rebue.scx.gateway;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class GatewayApplication {
public static void main(String[] args) {
try {
SpringApplication.run(GatewayApplication.class, args);
} catch (Throwable e) {
if (!e.getClass().getName().contains("SilentExitException")) {
e.printStackTrace();
throw e;
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy