看某些可能发生异常的方法
RPC层
当其他域调用本系统的时候,需要看有可能的HSF调用
Mybatis层
看执行的SQL和对应参数
watch org.apache.ibatis.executor.SimpleExecutor doQuery '{params[4].sql,params[4].parameterObject}' -x 3
看执行的返回值
watch org.apache.ibatis.executor.SimpleExecutor doQuery '{returnObj}' -x 2
同时看执行的SQL和对应的参数
watch org.apache.ibatis.executor.SimpleExecutor doQuery '{params[4].sql,params[4].parameterObject,returnObj}' -x 3
查看更新数据条数
watch org.apache.ibatis.executor.SimpleExecutor doUpdate '{params,returnObj}' -x 3