Your Internet Explorer version is not compatible with our shopping cart system. Please use version 9 or higher to avoid problems with your order(s). Close
How to deploy my *.properties files into /WEB-INF/classes ?
I need to deploy my *.properties files into /WEB-INF/classes directory for my webapp.
But I can’t create a directory /WEB-INF/classes because Eclipse say me it already existe (but I can’t see it). I can’t find any form to do achieve this goal into windows/preferences dialog box…
I have my properties files in the root of the source folder and then when it is built, the properties files are copied into the /WEB-INF/classes folder.
gelinp,
As jheadley already pointed out, the correct location for your .properties file is in the appropriate place in your Source tree. Do not put anything manually into your output dir, default behavior of Eclipse is to erase that dir when the project is rebuilt. So the properties file belongs in your source tree and will be copied over at build time.