Reputation: 1
I am using the latest Eclipse with the latest GWT and GWT plugins.
I need to use external JAR files from the servlet serving the gwt client. Where is the correct place for it?
Thanks!
Upvotes: 0
Views: 518
Reputation: 1701
Put them under WEB-INF/lib. ALSO you need to add them to the classpath settings under Eclipse.
Upvotes: 0
Reputation: 20890
Your server-side code can access jars in /war/WEB-INF/lib
. Just drop them in!
Upvotes: 2