I want to be able to set default values for some fields in my domain classes. Till now I had a class which stored a Map of settings for my whole project, with a task in mind to move this map into a redis database. The day has come and I moved all the data to redis and created a nice spring bean to get/set the values. However... it seems that default values are set on the domain class instance before bean is injected. This kind of breaks the whole process. Also... there's an issue with unit tests. I've created a class which implements the same interface as the spring bean and holds test values. I wanted to inject it into domain classes, but this fails as well.
So right now I'm trying to find a good way to handle externally stored defauls values for my domain classes with ability to run unit tests. Any thoughts?