I currently have an eclipse GWT project which works well in dev mode and if I deploy the WAR to tomcat. So far it is all client side code that turns into javascript. I started the project by using google's eclipse web application project wizard with only GWT selected.
I want to add some RPCs (and other servlets) to run on the server. I am familiar with eclipse projects with GWT and AppEngine and I want to keep the same client, server, shared packages. Those projects seem to run both the java compiler for the server code and the GWT compiler for the GWT code. How can I set up Eclipse so that it mimicks this behavior but instead for servlets and GWT running on tomcat? I don't need it to deploy the war file (but working in dev mode would be a major plus).
