Java开发笔记之mac的intellij idea在debug模式下卡住的问题
0x00 问题描述
mac的Intellij idea在debug模式下放行时,程序会卡住无响应;即使在已经放行的情况下,后续代码也不运行,console内只显示 The application is running或者等了很久程序才开始后续的运行。
0x01 解决方案
修改host中的配置。通过以下命令,打开hosts的编辑页面。
sudo vim /etc/hosts
127.0.0.1 localhost
后面添加为空格,添加上本机的hostname.local,变成了:
127.0.0.1 localhost ershixiongdeMacBook-Pro.local
排查思路参考