I have a POJO which represents all the properties of my application. It contains a huge amount of Strings ints and booleans (class variables, and their getters/setters).
The problem is that every time a new property gets added, i have to add the variable, the getter, setter, the code that sets it from loading the property file and the code that uses the getter.
My Idea was to refactor this into a getString(String stringToGet), getInt and getBoolean method that pulls from 3 hashmaps. The problem with doing it this way is that I can no longer use EL to get properties eg. ${Properties.telephoneNumber}
Anyone have any other ideas?