In my web application I have to send email to set of predefined users like finance@xyz.com, so I wish to add that to a .properties file and access it when required. Is this a correct procedure, if so then where should I place this file? I am using Netbeans IDE which is having two separate folders for source and JSP files.
| ||||
|
feedback
|
|
It's your choice. There are basically three ways:
Just outweigh the advantages/disadvantages in your own opinion of maintainability. I personally prefer putting it in the classpath outside the project (add new path to the classpath), so that I can manage it from outside and so I don't need to hardcode an absolute disk file system path in my Java code. Putting the file in the project itself would overwrite the file on every deploy and that's not useful if you intend to be able to modify the file programmatically using | |||||||||||
feedback
|
|
It just needs to be in the classpath (aka make sure it ends up under /WEB-INF/classes in the .war as part of the build). | |||
feedback
|
|
You can you with your source folder so whenever you build, those files are automatically copied to the classes directory. Instead of using properties file, use XML file. If the data is too small, you can even use web.xml for accessing the properties. Please note that any of these approach will require app server restart for changes to be reflected. Kalpak | |||||
feedback
|