使用 CFEclipse 在 ColdFusion 11 中进行线路调试

有没有人在使用 CFEclipse 插件在 Eclipse 中设置 行调试 时运气好?instructions 似乎适用于实际的 ColdFusion IDE.我们正在运行 ColdFusion 11.我一直在使用 FusionDebug 中的线路调试器,但我也想尝试一下原生调试器.它需要 ColdFusion IDE,还是可以在 Eclipse 中使用 CFEclipse 插件工作?

Has anyone had any luck in setting line debugging in Eclipse with the CFEclipse plugin? The instructions seem to be for the actual ColdFusion IDE. We are running ColdFusion 11. I've been playing around with the line debugger in FusionDebug, but I would like to give the native debugger a try as well. Does it require the ColdFusion IDE, or can it work within Eclipse with the CFEclipse plug-in?

推荐答案

CFEclipse 只是一个代码编辑器.查看 功能列表,它列出了调试,但仅适用于 CF 8:

CFEclipse is just a code editor. Looking at the feature list, it lists debugging, but only for CF 8:

Adobe 发布了适用于 Eclipse 的 ColdFusion 8 Extensions,其中包括一个步进调试器和 RDS 工具.Adobe 不再支持此功能,但仍可在最新的 CFEclipse 版本中使用.

Adobe released the ColdFusion 8 Extensions for Eclipse which included a step debugger and RDS tools. This is no longer supported by Adobe but still works in the latest CFEclipse versions.

Adobe 发布 CFBuilder 后,便为 ColdFusion 提供了完整的基于 Eclipse 的 IDE(其中包括一个步进调试器),我确信他们停止为较新版本的 ColdFusion 发布这些 Eclipse 扩展.这将阻止 CFEclipse 和其他基于 Eclipse 的免费编辑器为 CF 9 或更高版本提供分步调试.

Once Adobe released CFBuilder, thier complete Eclipse-based IDE for ColdFusion (which includes a step-debugger), I'm sure they stopped releasing those Eclipse extensions for newer versions of ColdFusion. This would stop CFEclipse and other free Eclipse based editors from providing step-debugging for CF 9 or later.

另一种步进调试器是 FusionDebug,我过去曾用它来解决遗留代码库中的一些严重问题.

An alternate step-debugger would be FusionDebug, which I have used in the past to solve some serious problems in legacy code bases.

相关文章