由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Re: Error handling in Jelly, SwixML and
相关主题
Error handling in Jelly, SwixML and others新手问题 -- web service怎么Authentication and Authorization
初学Java, FormLayout一问Re: Which IDE is better?
Is this a Bug or not?XML to Swing UI tools?
GUI THANKSAsk a question
design questionhow to hide and show the cursor in JTextField?
GUI libraries for JDeveloper?请教一个MessageListener的问题
maven还是别的?关于建立一个web app project的模板JTextField 只允许小于N的input 怎么实现的?
eclipse的jetty服务started但8080口显示404 errorjtextfield上的listener被触发之前的值怎么读?
相关话题的讨论汇总
话题: error话题: jelly话题: swixml话题: handling话题: gui
进入Java版参与讨论
1 (共1页)
c*****s
发帖数: 214
1

它抛出的都是JellyException,JellyException继承NestableException。里面放着原始
的错误。
最终这些错误被一路扔出来,Jelly自己不处理(当然了,它怎么会知道该怎么处理?)

简单的使用commons-logging,warning和debugging也是。
该扔异常就扔异常。不是每个类都有能力和责任去handle异常的。
这些异常可以最终由外层的程序专心用最合适的方法去处理。
我比较喜欢让错误不要被隐藏起来。GUI设计里可以有个console window,专门显示系统
级的异常。就像eclipse里的Error Log Window。
c*****t
发帖数: 1879
2
The problem with pure exception approach is the recovery. In GUI design
for example, often there are variable assignments (that is, assign the
generated JTextField to a variable) which can be ignored in preview GUI
step. Yet, in actually running the program, you want to throw an exception.
Thus, it actually requires a configurable mechanism to selectively turning
on/off exception throwing. In certain cases, you just want to generate
a warning. Sometimes, you want to log everything(warning, d

【在 c*****s 的大作中提到】
:
: 它抛出的都是JellyException,JellyException继承NestableException。里面放着原始
: 的错误。
: 最终这些错误被一路扔出来,Jelly自己不处理(当然了,它怎么会知道该怎么处理?)
: 。
: 简单的使用commons-logging,warning和debugging也是。
: 该扔异常就扔异常。不是每个类都有能力和责任去handle异常的。
: 这些异常可以最终由外层的程序专心用最合适的方法去处理。
: 我比较喜欢让错误不要被隐藏起来。GUI设计里可以有个console window,专门显示系统
: 级的异常。就像eclipse里的Error Log Window。

1 (共1页)
进入Java版参与讨论
相关主题
jtextfield上的listener被触发之前的值怎么读?design question
新手求教JTextField的问题GUI libraries for JDeveloper?
How about Swing?maven还是别的?关于建立一个web app project的模板
spring Annotation based configurationeclipse的jetty服务started但8080口显示404 error
Error handling in Jelly, SwixML and others新手问题 -- web service怎么Authentication and Authorization
初学Java, FormLayout一问Re: Which IDE is better?
Is this a Bug or not?XML to Swing UI tools?
GUI THANKSAsk a question
相关话题的讨论汇总
话题: error话题: jelly话题: swixml话题: handling话题: gui