从Change unhandled exception auto-generated catch code in Eclipse?发现我们可以使用$ {exception_var}并查看http://help.eclipse.org/luna/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Freference%2Fpreferences%2Fjava%2Fcodestyle%2Fref-preferences-code-templates.htm但是我可以在try catch块中使用哪些来获取唯一的(对于该类)名称?< / p>
原因:我的开发人员(8)发现很难编辑这些,并且很多时候代码都会进入生产,我们关闭了log4j方法名称打印,所以我们看到异常但不确定哪一行一个类来自。
尝试使用
$ {指数:了newName(INT)}
但是说
变量&#39; newName&#39;未知
更新:KVK评论有帮助,另外需要重新启动以查看try-catch的更改至少
答案 0 :(得分:1)
使用
${enclosing_type}, ${enclosing_method}
将解决您的问题。