dependencies {
implementation 'io.github.cdimascio:java-dotenv:5.1.1'
}
import io.github.cdimascio.dotenv.Dotenv;
public class MyApp {
public static void main(String[] args) {
Dotenv dotenv = Dotenv.configure().load();
String apiKey = dotenv.get("API_KEY");
}
}
API_KEY=abcdefg123456
DB_URL=jdbc:mysql://localhost:3306/myapp