将 GWT 编译为另一个 Web 应用程序
我对 gwt 很陌生,
我的任务是将 gwt 项目编译成 JS 文件,并将 GWT Servlet 和 Javascript 文件添加到另一个 Java Web 应用程序(spring)中。
除了 gwt 生成的 js 文件之外,我还将服务器文件夹从 gwt 项目复制到另一个项目。还将服务 servlet 添加到 web.xml 中,
客户端工作正常。
我通常想知道我必须设置哪些其他配置才能使其工作?
谢谢。
编辑:
web.xml 中的 servlet 映射
<servlet>
<servlet-name>applicationReportService</servlet-name>
<servlet-class>com.project.reports.gwt.server.service.rpc.applicationReportServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>applicationReportService</servlet-name>
<url-pattern>/reports/applicationReportService.svc</url-pattern>
</servlet-mapping>
I'm really new to gwt,
I'm tasked to compile the gwt project into JS files and add the GWT Servlets and Javascript files inside another Java web-application (spring).
other than the js file generated by gwt I've also copied the server folder from the gwt project to the other project. also added the service servlet to web.xml
the client side is working fine.
I want to know usually what other configurations I have to set to make this work?
Thanks.
EDIT:
servlet mapping in web.xml
<servlet>
<servlet-name>applicationReportService</servlet-name>
<servlet-class>com.project.reports.gwt.server.service.rpc.applicationReportServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>applicationReportService</servlet-name>
<url-pattern>/reports/applicationReportService.svc</url-pattern>
</servlet-mapping>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在运行时,gwt 依赖于 gwt-user.jar 和 gwt-servlet.jar。如果你将它们添加到你的类路径以及你的 servlet 中,你应该没问题
at runtime gwt depends un the gwt-user.jar and the gwt-servlet.jar. If you add them to your classpath as well as your servlets you should be fine