当前位置: 代码迷 >> Java Web开发 >> myeclipse 运行tomcat 如何恢复跳转到Debug时候的提示框
  详细解决方案

myeclipse 运行tomcat 如何恢复跳转到Debug时候的提示框

热度:208   发布时间:2016-04-10 22:31:42.0
myeclipse 运行tomcat 怎么恢复跳转到Debug时候的提示框
之前我运行tomcat服务器 ,会提示我进入Debug模式提示框,我点了no并且 选中了 remember my decision ,我现在想取消这个选择,该怎么做?
------解决方案--------------------
最简单的方法就是:删掉workspace下的.metadata,重新导入项目。
或者:
打开 workspace\.metadata\.plugins\org.eclipse.core.runtime\.settings\org.eclipse.debug.ui.prefs,里面有一句:
org.eclipse.debug.ui.switch_perspective_on_suspend=never

改成:
org.eclipse.debug.ui.switch_perspective_on_suspend=false

然后重启eclipse,调试时会让你重新选择。

或者改成always,就改成了每次都进去调试界面。
  相关解决方案