如何发现Java Swing可能出现的问题?
我需要一个工具来监视正在运行的 Java 应用程序并报告其中错误使用 Swing GUI 库的情况。例如,应该很容易找到从非 UI 线程调用 setVisible() 等方法的地方。
与 IntelliJ IDEA 集成是一个优势。
I need a tool watching for a running Java application and reporting about incorrect use of Swing GUI library in it. It should be easy to find places where methods like setVisible() are invoked from a non UI thread for example.
Integration with IntelliJ IDEA is a plus.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试Substance Look&Feel,它具有针对 EDT 违规的运行时检查,请参阅此页面了解详细信息。
You can try Substance Look&Feel, it has runtime checks for EDT violations, see this page for details.