Adding services to your application to integrate additional functionality is one of the primary benefits of using a PaaS like Bluemix. Whether that is a database, a mobile push service, or some type of analytics service, you just pick what you need and bind them to your application. You don’t have to install software of setup VMs, just point and click. After you have done that you are always faced with the same problem, you now need to access the service info in the VCAP_SERVICES environment variable. This info usually consists of some type of credentials or API keys, something that authorizes you to use the service in one way or another. As everyone probably knows, the VCAP_SERVICES environment variable is a JSON object, so extracting information from it just involves parsing JSON. In Java you have many choices for doing that which I will not go into here, but it is a fairly simple task. If you are going to be using more than one service in your application your probably going to want to write some type of utility class which allows you to extract arbitrary info for different services by passing some type of unique identifier for the service (typically the service name). This will return you more JSON to work with. Again, none of this is hard stuff, even an entry level developer. However it is kind of monotonous, and when you think about the fact you need to implement this same pattern for every application you deploy to Bluemix, it is unbearable. A helper library would make our lives as Java developers better. Apparently I am not the only person to think this because one exists It is called Spring Cloud. Don’t let the name fool you, this library is not limited to just Spring apps, it can be used by any Java app, but if you are using Spring there are some added benefits.