I heared a lot that reading and writing a file from Java EE environment (e.g. Glassfish Server) is bad design and a bad decision. Is it always true?
I know that it´s not good because multiple threads could access one file. I want to create a dynamic property file for my application. There only one or two admins who will adjust the properties. So I could persist the properties in the database, but the simpler way is to store it in the file.
So is the simpler way a bad decision and what are the disadvantages?