Hi All,
Am creating a very customizable web application in j2ee. The application has some configurations that are specific to each client supported and the client can have multiple users.
The way I am thinking of doing this is storing the configuration in a db table having the columns client_id , property_name, property_value and associating each user with a client id. So when a user logs in we check the client id of that user and load the configurations for that client from the db.
Please let me know your suggestions/opinions.