问题描述
我有一个新编码的GWT / GAE应用程序,它在客户端使用了RequestFactory和Editors,后面使用了一个自定义的Objectify DAO服务。
persist()路径在成功上工作良好。
客户端JSR 303的工作原理也是如此。
我的问题是如何触发服务器警告/错误并处理UI更新?
我使用Chandler的Generic DAO作为Objectify 2在
我的gwt活动正在调用persist(myProxy).fire(new Receiver<>)
我的dao代码抛出IllegalArgumentException和其他RuntimeExceptions用于业务逻辑情形找到重复的电子邮件地址 - 想要登录吗?
Receiver<>。onSuccess()可以正常工作以追踪成功的结果。
既不是Receiver<> onFailure()也不是Receiver<>。onViolation()报告RuntimeException。
(更正:为服务器端异常调用onFailure())
有没有更好的方法来做到这一点?
DAO抛出onViolation()或onFailure()会报错吗?
编辑器应该如何处理和从异常中恢复?
我发现了最通用的命令序列为
void start(){
//获得p
context1.get( (新接收者< P> {onSuccess(P resp){p = resp;} ...})。fire();
//或创建p
p = context2.create(P.class);
//然后保存p
req = context2.persist(p).to(new Receiver< P> {/ * note not use context1 * /
onViolation(...){ / * JSR 303处理程序* /};
onFailure(error){/ * handle * / error.getMessage()};
onSuccess(X x){/ * persist() };});
//带有p
的驱动编辑器driver.edit(p,req);
$ b $ ...
void onSave(){
//编辑器
ctxt = driver.flush()/ * note ctxt == context2 * /
if(driver.hasErrors()){/ * JSR 303 handler * /};
// RF
ctxt.fire();
根据下面的会话摘录
$ b
I have a newly coded GWT/GAE app that uses RequestFactory and Editors on the client and a custom Objectify DAO Service on the back.
The flush() then persist() paths work fine on success.Client side JSR 303 works as well as can be expected too.
My question is how to trigger server warnings/errors and handle UI updates?
I am using Chandler's Generic DAO for Objectify 2 athttp://turbomanage.wordpress.com/2010/02/09/generic-dao-for-objectify-2/
my gwt activity is calling persist( myProxy ).fire( new Receiver<> )
my dao code is throwing IllegalArgumentException and other RuntimeExceptions for business logic situations like "Duplicate email address found - want to login instead?"
Receiver<>.onSuccess() works fine to track a successful outcome.neither Receiver<>.onFailure() nor Receiver<>.onViolation() report the RuntimeExceptions.
( Correction: onFailure() is being called for server-side exceptions)
Is there a better way to do this?What exceptions should the DAO throw such that onViolation() or onFailure() report errors?How should the editor(s) handle and recover from the exception?
I've found the most versatile command sequence to be
void start() {
// Either get p
context1.get(..).to( new Receiver<P> { onSuccess(P resp){p = resp;} ... }).fire();
// OR create p
p = context2.create( P.class );
// Then save p
req = context2.persist(p).to( new Receiver<P>{ /* note do not use context1 */
onViolation(...) { /*JSR 303 handler*/ };
onFailure( error ) { /* handle */ error.getMessage() };
onSuccess(X x) { /* whatever persist() returns handler */ }; } );
// drive editor with p
driver.edit( p, req);
}
....
void onSave() {
// editor
ctxt = driver.flush() /* note ctxt == context2 */
if ( driver.hasErrors() ) { /*JSR 303 handler*/};
// RF
ctxt.fire();
}
Based on the conversation excerpt below at http://groups.google.com/group/google-web-toolkit/browse_thread/thread/da863606b3893132/96956661c53e1064?hl=en
这篇关于处理GWT RequestFactory服务器错误响应的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!