Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是一名 Java 开发人员,我使用 Eclipse 作为 IDE。我倾向于在 Java 程序中编写几种方法,但是对于记录器,我不添加任何方法。有什么办法可以为 Eclipse 开发一个插件,它可以解析整个 Java 类并识别方法的开始和结束,然后添加入口记录器和出口记录器?除了使用文本解析之外,还有什么方法可以识别方法的开头和结尾吗?
您可以使用面向方面的方法来完成此操作。那篇文章中有一个登录示例。
如果您使用 Spring 或面向方面的编程,一个更好的解决方案是编织一个日志方面。