With Struts2 we have to have struts.xml in the class path, so it no longer works to have it under WEB-INF. So the way I got my project to deploy was to stick it under WEB-INF/classes and have it include ../struts2.xml
2 Problems: 1) Eclipse cleans out the classes folder when I do a rebuild, so it deletes struts.xml 2) Eclipse doesn't show the classes folder in my project browser, so its a poor place to stick config files in the first place.
How are you Struts2 Eclipse developers doing this?