将 GWT 编译为另一个 Web 应用程序

发布于 2024-11-07 17:33:35 字数 752 浏览 0 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

述情 2024-11-14 17:33:35

在运行时,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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文