Skip to content

Instantly share code, notes, and snippets.

@chathurangat
Created January 2, 2018 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chathurangat/12f17726d1a689e622b51b7b189a02e3 to your computer and use it in GitHub Desktop.
Save chathurangat/12f17726d1a689e622b51b7b189a02e3 to your computer and use it in GitHub Desktop.
@Service
@Profile("staging")
public class StagingEnvironmentService implements EnvironmentService
{
@Override
public String getCurrentEnvironment()
{
return "staging_environment";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment