41 lines
1.6 KiB
Java
41 lines
1.6 KiB
Java
package xyz.mcutils.backend;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.google.gson.GsonBuilder;
|
|
import lombok.SneakyThrows;
|
|
import lombok.extern.log4j.Log4j2;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
import java.io.File;
|
|
import java.net.http.HttpClient;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.StandardCopyOption;
|
|
import java.util.Objects;
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.Executors;
|
|
|
|
@Log4j2
|
|
@SpringBootApplication
|
|
public class Main {
|
|
public static final Gson GSON = new GsonBuilder()
|
|
.setDateFormat("MM-dd-yyyy HH:mm:ss")
|
|
.create();
|
|
public static final HttpClient HTTP_CLIENT = HttpClient.newHttpClient();
|
|
public static final ExecutorService EXECUTOR_POOL = Executors.newFixedThreadPool(8);
|
|
|
|
@SneakyThrows
|
|
public static void main(String[] args) {
|
|
File config = new File("application.yml");
|
|
if (!config.exists()) { // Saving the default config if it doesn't exist locally
|
|
Files.copy(Objects.requireNonNull(Main.class.getResourceAsStream("/application.yml")), config.toPath(), StandardCopyOption.REPLACE_EXISTING);
|
|
log.info("Saved the default configuration to '{}', please re-launch the application", // Log the default config being saved
|
|
config.getAbsolutePath()
|
|
);
|
|
return;
|
|
}
|
|
log.info("Found configuration at '{}'", config.getAbsolutePath()); // Log the found config
|
|
|
|
SpringApplication.run(Main.class, args); // Start the application
|
|
}
|
|
} |