GWT 2.4在客户端(issue 6234,issue 6035)上提供服务继承。
我一直在等待这个未来很长一段时间,因为它在客户端上节省了大量重复的代码。我已经开始实施它了,但是因为它取得了成功。
这是我的代码:
public interface BaseEntityRequest<T>
{
Request<Void> put(T entity);
Request<List<T>> getAllOrderBy(String propertyName);
Request<List<T>> getRangeAndFilter(int limit,int offset, QueryInfoProxy queryInfo);
}
@Service(value = EgdDao.class, locator = DaoServiceLocator.class)
public interface EgdRequest extends RequestContext, BaseEntityRequest<EgdProxy>
{
Request<Void> exportToExcel(QueryInfoProxy queryInfo, String userName);
}
到目前为止getAllOrderBy
和getRangeAndFilter
工作正常,但put(T entity)
没有。
我在控制台中收到以下错误:
[ERROR] Unexpected error
java.util.NoSuchElementException
这将在接收器onFailure ServerFailure消息中返回:
Error 500 INTERNAL_SERVER_ERROR
HTTP ERROR 500
Problem accessing /gwtRequest. Reason:
INTERNAL_SERVER_ERROR
我可以看到,put
方法无法工作的唯一原因是,当其他方法执行时,它使用通用参数T.当我移动put
方法时EgdRequest
接口(使用EgdProxy
作为参数而不是T)它开始工作,所以我知道我的服务器代码很好。
有人知道如何正确实现这个吗?
谢谢!