Assuming I have a .properties file and hibernate.cfg.xml in a standard maven web application layout where should they be placed so that they are included in my .war file when I run package?
src/main/resources
src/main/java
src/main/webapp
src/main/config
?
Application/Library resources go in
src/main/resources(they will end up intarget/classesfirst after compilation and then inWEB-INF/classesin the war after packaging).See also