I have many classes with static final fields which are used as default values or config. What is best approach to create global config file? Should I move these fields to single
It is good to have them on one place. Property file or static class? Property file should be used for e.g. localization. Static class for e.g. String constants.