Hi,
I have a few questions if anyone can help?
1. User specifies Alone or Server etc to run the application, has everyone just created a startup class which is what gets called and this then directs the flow of control to either the loc\l client class and its main method or the server etc? As thats the simple way to implement this I think from the command line. This startup class can pass the params from the properties file.
2. The properties file is that just simply a text file that has the database name, port, host listed?
3. I cache my database and the locking etc works, after reading other posts and your replies (thanks
) I am concerned about the create method, I have implemented this within the cached database as this is not called by the client I am not concerned about the data file database being up dated. That said I have added a writeOutData method to my dataAccess file incase the user ever wanted to write out the data file, do I need to include a call to this on method exit (ie as a data back up as none of the booking results will have been saved to the data file)?
4. The 48 hour rule, since the requirments do not explicity say MUST in front of this requirment, so do we have to do it?