Should a "context.xml" file for deploying application-specific configuration to Tomcat be placed in:
src/main/resources/META-INF/context.xml
...or...
src/main/webapp/META-INF/context.xml ?
Justification for asking: Have seen conflicting advice on StackOverflow and could not find the specific location mentioned in the Tomcat documentation.
The documentation is indeed not specific about this.
It is src/main/webapp/META-INF
since the file needs to end up deployed in the web root/META-INF folder, not in WEB-INF/classes/META-INF.