Expected way to access your DB properties from the source code is using configuration interfaces. Documentation on this is available here. When you have your configuration interface simply inject it into a bean and call getter for a property.
This worked great thanks! I was trying to access the property getters in the service bean constructors, but that was throwing a null pointer. Once I changed that and called the getters after the service bean was already created, it worked great. Thanks