我有这样的文件夹结构
SampleWeb/
src/main/
java : All java classes <br/>
resources : All properties file etc<br/>
webapp : WEB-INF folder and other jsp pages
pom.xml
现在,默认的 Eclipse 构建创建目标文件夹并将所有输出文件移动到目标文件夹,就像
target/classes/
all .class files (of src folder)
all properties (of resource folder)
jsp files (of webapp folder, and ofcourse WEB-INF folder too)
所以我正在寻找的是,如何使用 Eclipse 构建动态地将所有 .class 文件移动到 WEB-INF/classes 文件夹。