Testing environement variable
This commit is contained in:
parent
aa8784c218
commit
cda8c1cc47
@ -10,6 +10,7 @@ import net.dv8tion.jda.core.entities.User;
|
||||
import net.dv8tion.jda.core.events.message.MessageReceivedEvent;
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.boot.ExitCodeGenerator;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
@ -24,7 +25,8 @@ import java.util.HashMap;
|
||||
@SpringBootApplication
|
||||
public class MainBot {
|
||||
|
||||
|
||||
@Value("${name}")
|
||||
public static String test;
|
||||
public static final CommandParser parser =new CommandParser();
|
||||
public static HashMap<String, Commande> commandes = new HashMap<>();
|
||||
public static HashMap<User, ArrayList<Message>> historique =new HashMap<>();
|
||||
@ -38,7 +40,7 @@ public class MainBot {
|
||||
private static Logger logger = LogManager.getLogger();
|
||||
|
||||
public static void main(String[] args) {
|
||||
ConfigurableApplicationContext ctx = SpringApplication.run(MainBot.class, args);
|
||||
|
||||
logger.trace("trace");
|
||||
logger.debug("debug");
|
||||
logger.info("info");
|
||||
@ -63,12 +65,17 @@ public class MainBot {
|
||||
}
|
||||
|
||||
JDA jda = Init.initBot(token, dev);
|
||||
ConfigurableApplicationContext ctx = SpringApplication.run(MainBot.class, args);
|
||||
if(jda == null) {
|
||||
System.exit(SpringApplication.exit(ctx, (ExitCodeGenerator) () -> {
|
||||
logger.fatal("Init error! Close application!");
|
||||
return 1;
|
||||
}));
|
||||
}
|
||||
|
||||
logger.info(test);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/***************************************
|
||||
@ -106,6 +113,7 @@ public class MainBot {
|
||||
logger.warn("Commande inconnue");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
/*******************************
|
||||
* RAZ Compteur Spam *
|
||||
|
2
src/main/resources/application.properties
Normal file
2
src/main/resources/application.properties
Normal file
@ -0,0 +1,2 @@
|
||||
#server.port={$PORT}
|
||||
name = {$TEST}
|
Loading…
Reference in New Issue
Block a user