私はこのようなフォルダ構造を持っています
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フォルダーに移動する方法です。