Hi everybody!
i have one eclipse project(A) with a small spring application and another one with a web application using GWT (B).
project A exports its ressources via build path / order and export. project B imports the ressources via build path / projects.
eclipse adds the files to the build path and to the system class path of the run-targets but this results in strange spring-errors because the files are not being loaded with the web-classloader.
for correct behaviour on the webserver-targets the exported ressources (.class, META-INF/spring/*) of project A have to be copied in project B/war/WEB-INF/classes.
how can i accomplish this task using eclipse?
thanks a lot for your help!