Possible Duplicate:
What is the difference between Class Path and Build Path
I am using eclipse to build a dynamic web project with struts2 framework. At first, I put the struts.xml under the WEB-INF directory and build path to it, but I failed to run the web project. After I make a source package under the src diretory and put struts.xml in it, the web project can run normally.
I am confused about that put a java file in source package means put the responding compiled class in the bin directory and class_path which makes the other classes can find it, then what does build path action in eclipse do?