Java 的补充开发工具
您最喜欢的 Java 开发补充工具是什么?
我的是:
1)Total Commander(由于能够在 JAR 中搜索)。
2) JAD + Jadclipse(用于理解和调试库)
当然还有 Google。 (没有它就无法生活)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
Jython 用于交互式测试和探索各种事物。
Jython for interactive testing and exploration of all sorts of things.
PMD
PMD 扫描 Java 源代码并查找潜在问题,例如:
PMD
PMD scans Java source code and looks for potential problems like:
我大部分时间都花在 Eclipse 和命令行上。
使用 Eclipse,我通常会修改键盘绑定,因此我可以轻松获得诸如 Open Type/Resource、Quick Outline、Show Refactor Menu 等功能。 我还安装了 Q for Eclipse 以启用良好的 Maven 集成,使我能够访问我编码时的依赖关系。
在命令行中,它是诸如 Maven、Ant 和 Subversion。 我有一些命令可以在 JDK 之间切换,以测试项目是否在所有预期目标上编译和运行。
我曾经保留过一份 JAD 的副本,但多亏了 Maven 和 Q for Eclipse,我几乎不再使用它了。 反编译的代码几乎不如原始代码那么可用。
我差点忘了,JConsole 有助于监控您的应用程序,我还使用 YourKit 进行更高级的分析。
I pretty much spend most of my time in Eclipse and at the command line.
With Eclipse I usually modify the keyboard bindings so I have features such as Open Type/Resource, Quick Outline, Show Refactor Menu and so on at the tip of my fingers. I also install Q for Eclipse to enable good Maven-integration allowing me access to the source of my dependencies when coding.
At the command line it's tools such as Maven, Ant and Subversion that are used the most. I have a few commands to switch between JDKs to test that projects compile and run on all their intended targets.
I used to keep a copy of JAD around, but thanks to Maven and Q for Eclipse I harldy ever use it anymore. Decompiled code is not nearly as usable as the original.
I almost forgot, JConsole helps with monitoring your application also I use YourKit for more advanced profiling.
JavaRebel 通过自动将代码更改热部署到正在运行的程序来加快开发速度。
JavaRebel speeds up development by automatically hot deploying code changes to the running program.
Eclipse 已经提供了很多功能,这要归功于无数的插件(也支持其他语言和环境)。
Eclipse has already a lot to offer, thanks to the countless plugins (which support other languages and environments, too).
FindBugs,Proguard、JProfiler、Cobertura。
FindBugs, Proguard, JProfiler, Cobertura.