Eclipse 是否允许在 xml 文件上查找断点?
我有一个包含许多配置 xml 文件的项目。 是否可以在 Eclipse 调试器中放置某种断点,以便我可以找到是否读取了 xml 文件的某些节点(并且还需要类名称)? 谢谢。
I have a project with many configuration xml files.
Is possible in Eclipse debugger put some kind of breakpoint so I can found if some node of xml file was read (and also need name of class) or not?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么,您有 2 个选择 AFAICS:
如果项目使用 JAXB 或 Castor 或某种其他形式的 XML 编组到 Java 对象中,您所要做的就是查看与您的 XML 文件匹配的 Java 类,找到 mathcing 类/ 如果项目使用 JAXB 或 Castor 或某种其他形式的 XML 编组到Java
使用http://www.oxygenxml.com/eclipse_plugin.html",Oxiegen XML Eclipse 插件。
Well you have 2 options AFAICS:
If the project uses JAXB or Castor or some other form of XML marshalling into Java objects, all you have to do is look into the Java classes that match your XML files, find the mathcing class/method for the xml tag you want to breakpoint/debug, and debug the corresponding Java code.
Use http://www.oxygenxml.com/eclipse_plugin.html", Oxiegen XML Plugin for Eclipse.