如何将 GWT 项目分发给两个不同的开发人员

发布于 2024-12-08 17:45:51 字数 145 浏览 0 评论 0原文

我正在开发一个 GWT 项目,其中我需要一个前端开发人员来处理所有前端事务,需要一个后端开发人员来查看所有编码方面,但我不希望前端开发人员看到我的编码内容并且不做任何事情。不想让后端开发人员看到我的观点。

GWT 中有可能以任何方式吗?

谢谢

I am developing a GWT project in which i need a front end developer to handle all the front end things and a back end developer to look all the coding side , but i don't want a front end developer to see my coding stuff and don't want a back end developer to see my view .

Is it possible in any way in GWT?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

故事和酒 2024-12-15 17:45:51

如果您正确构建项目,这应该很容易。您应该拥有三个包:clientservershared

shared 应包含 RPC 服务、异步服务和 DTO(或模型)类。

前端人员需要客户端共享服务器的模拟版本。

后端人员需要服务器共享客户端的模拟版本。

因此,为了让他们不知情,您需要创建 clientshared 的模拟版本,仅当 shared 更改时才需要更新。

That should be pretty easy if you structure the project properly. You should have three packages: client, server and shared.

shared should contain RPC service, service async and DTO (or model) classes.

Frontend guy needs client, shared and a mock version of server.

Backend guy needs server, shared and a mock version of client.

So, to keep them in the dark you need to create mock versions of client and shared that need to be updated only when shared changes.

幼儿园老大 2024-12-15 17:45:51

从逻辑上讲,服务器与客户端共享的唯一东西是RemoteServiceImpl。只要您与方法存根共享相同的 XXXImpl,就根本不需要看到彼此的代码。

Logically, the only thing the server shares with the client is the RemoteServiceImpl. As long as you share the same XXXImpl with method stubs, you need not see each other's code at all.

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