q***s 发帖数: 2243 | 1 为了调试,需要把java代码中每个函数体放入
try ... catch ...
语句中,请教各位高手,有没有这样的工具可以直接使用。
自己写感到需要处理的情况太多了,多谢! | b******y 发帖数: 9224 | 2 不太明白为啥需要这样做。你可以就在主函数中加上try, catch, 然后,其他的函数都
throw exception就行了。
debug的时候,可以dump出来stack trace. | r*****l 发帖数: 2859 | 3 AOP。
【在 q***s 的大作中提到】 : 为了调试,需要把java代码中每个函数体放入 : try ... catch ... : 语句中,请教各位高手,有没有这样的工具可以直接使用。 : 自己写感到需要处理的情况太多了,多谢!
| s******e 发帖数: 493 | 4 that is kind of abusing exception handling block.
but if you have to do it. as suggested by redbull, aop is yur best shot.
if runtime performance is your concern, trying aspectj.
if you are in spring env, using spring native aop, but it will weave the
aspects on runtime.
if you are in jboss env, it also has its own aop, in which aspects will be
woven at classloading time. |
|