I'm in the planning phase of a java server application specified for my needs.
Basically, the server needs to check a database with usernames and passwords and some specified values for each user.
As I'm new to java server applications, I'm wondering what the ideal choice for this would be.
The database needs to be able to be saved when the server application closes and resumed at a later time.
One option I've been thinking of is simply to have a .txt file as the database and upon server start, create a HashMap or something and use the data stored in the file. This makes it readable (cause of the .txt file) and I've heard that HashMaps are excellent choices for performance.
I've read about HSQLDB but I'm unsure how to use this.
Thanks. Mike.