I want to add spring properties file inside classes directory in WEB-INF directory, How can I do that....
support-greg
Post subject:Posted: Jan 26, 2006 - 07:01 AM
Moderator
Joined: Mar 31, 2004
Posts: 1615
The classes directory is specified as your output folder. In the package explorer you can't see output folders because Eclipse Java builder manages those. Also even if you put property files in there they would be scrubbed without your knowledge by the eclipse builder. Instead you need to put your spring properties files in the source folder. The build process will automatically copy any non-java files into your output folder, in your case the classes folder.