GWT +日食 +外部 JAR 文件
我正在使用最新的 Eclipse 以及最新的 GWT 和 GWT 插件。
我需要使用服务于 gwt 客户端的 servlet 中的外部 JAR 文件。它的正确位置在哪里?
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您的服务器端代码可以访问
/war/WEB-INF/lib
中的 jar。只要把它们放进去就可以了!Your server-side code can access jars in
/war/WEB-INF/lib
. Just drop them in!GWTProject/war/WEB-INF/lib/gwt-servlet.jar
怎么样?What about
GWTProject/war/WEB-INF/lib/gwt-servlet.jar
?将它们放在 WEB-INF/lib 下。您还需要将它们添加到 Eclipse 下的类路径设置中。
Put them under WEB-INF/lib. ALSO you need to add them to the classpath settings under Eclipse.