I am currently using Spring Framework MVC for a Web Application. We have a requirement for storing and loading user preferences.
Are there any common open-source / trusted frameworks for the same?
User Preference Example - Screen with Multiple data filtering drop downs. On loading the screen, if the preferences are previously saved, they would be used and data is automatically filtered and displayed. If the preferences are NOT saved previously, user is forced to select the filters before displaying the data.
Preferences should be saved per user, per screen and widget.
I guess one of the options is building something using Java Preference API.
Any ideas?
Java
Last Comment
Jagadeesh M
8/22/2022 - Mon
zzynx
>> I guess one of the options is building something using Java Preference API.
Using the Preferences API is indeed how we do it.
It's nothing more than storing and retrieving (and applying) key-value pairs in registry/ini-files
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
Using the Preferences API is indeed how we do it.
It's nothing more than storing and retrieving (and applying) key-value pairs in registry/ini-files