Eclipse调试不能进入断点_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > Eclipse调试不能进入断点

Eclipse调试不能进入断点

 2014/10/15 18:48:29  lingsui  程序员俱乐部  我要评论(0)
  • 摘要:Eclipse下在给行设置断点或者在调试时弹出错误“Unabletoinstallbreakpointduetomissinglinenumberattributes,Modifycompileroptionstogeneratelinenumberattributes"这个错误找到的解答方案汇总:1、使用Ant编译时,未打开debug开关,在写javac任务时确认debug=true,否则不能调试
  • 标签:Eclipse
Eclipse下在给行设置断点或者在调试时弹出错误“Unable to install breakpoint due to missing line number attributes,Modify compiler options to generate line number attributes"

这个错误找到的解答方案汇总:
1、使用Ant编译时,未打开debug开关,在写javac 任务时确认debug=true,否则不能调试。THe settings for the eclipse compiler don't affect the ant build and even if you launch the ant build from within eclipse. ant controls it's own compiler settings.you can tell ant to generate debugging info like this 'javac ... debug="true".../>(我的问题是因为这个原因);
2、编译器的设置问 题,window->preferences->java->Compiler在compiler起始页,classfile Generation区域中确认已经勾选了All line number attributes to generated class files。如果已经勾选,从新来一下再Apply一下。或者从项目层次进行设定,项目属性->java compiler同样在起始页,确定已经勾选

其次如果以上两点都没有问题,那么你将项目编译(Build)一下,最好是Build project all,因为出现这个问题有时候是你在Workpence中添加了新的项目。
发表评论
用户名: 匿名