Microservices - Configuration and Secrets Management
In a microservice using Java, what will be the output of this code if the environment variable
PORT is set to 8080?String port = System.getenv("PORT");
System.out.println("Service running on port: " + port);