I have a requirement to read the properties file, and according to properties from properties file I need to display them in the
JSP. for this I need to point the exact matching of property with the instance variable from Javabean (The data for this object is coming from DB). If the properties in the properties file are fixed, then its not a big deal we can read each property and match with javabean's variable directly.
But in future the properties file can be changed with different properties, without changing the code I need to match them and need to display them with the data in JSP. But here the Javabean is reading all fields data from database.
Here is the properties file.
Here is the Javabean class:
Could some one please help on this