GWT +请求工厂+ RequestContext 重载验证

发布于 2024-10-20 10:57:38 字数 757 浏览 3 评论 0原文

我遇到了有关请求上下文超载的问题。

我有以下问题:

public interface TaskAssignmentRequest extends RequestContext {
.
.
.

    Request<List<TaskAssignmentProxy>> findTaskAssignmentByProjectIds(List<String> id);

    Request<List<TaskAssignmentProxy>> findTaskAssignmentByProjectIds(List<String> id, Date start_date, Date end_date);

运行代码时出现以下错误

SEVERE: Method overloads found in type com.abc.server.TaskAssignmentService named findTaskAssignmentByProjectId:
  java.util.List findTaskAssignmentByProjectId(java.lang.String java.util.Date java.util.Date )
  java.util.List findTaskAssignmentByProjectId(java.lang.String )

在这种情况下不允许重载吗?我不明白为什么不。

谢谢,

纳丁

I am having issues with regarding the overloading of the Request Context.

I have the following:

public interface TaskAssignmentRequest extends RequestContext {
.
.
.

    Request<List<TaskAssignmentProxy>> findTaskAssignmentByProjectIds(List<String> id);

    Request<List<TaskAssignmentProxy>> findTaskAssignmentByProjectIds(List<String> id, Date start_date, Date end_date);

I am getting the following errors when I am running my code

SEVERE: Method overloads found in type com.abc.server.TaskAssignmentService named findTaskAssignmentByProjectId:
  java.util.List findTaskAssignmentByProjectId(java.lang.String java.util.Date java.util.Date )
  java.util.List findTaskAssignmentByProjectId(java.lang.String )

Is overloading not allowed in this case? I do not see why not.

Thanks,

Nadin

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

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

发布评论

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

评论(2

寂寞陪衬 2024-10-27 10:57:38

RequestFactory 目前(从 GWT 2.2 开始)不支持服务 API 中的方法重载。

RequestFactory doesn't currently (as of GWT 2.2) support method overloads in service APIs.

幸福丶如此 2024-10-27 10:57:38

当它寻找带有 List 参数的方法时,这些是它能找到的唯一方法吗?您列出的方法只有一个纯字符串作为第一个参数。

Could it be that those are the only methods it could find, when it's looking for the methods with the List<String> parameter? The methods you've listed just have a plain String for the first parameter.

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