美文网首页
【疑难杂症】IDEA Errors汇总

【疑难杂症】IDEA Errors汇总

作者: 微笑吧_5464 | 来源:发表于2018-10-25 08:34 被阅读0次

1-Idea报错“Unable to save settings: Failed to save settings. Please restart IntelliJ IDEA”,重启后仍然是这样

原因:安装了插件identifier highlighter;
解决方法:卸载或者禁用identifier highlighter插件;

2-IDEA | 报错—Can‘t use Subversion command line client

描述:导入Maven项目时,报错Can't use Subversion command line client: svn.The path to the Subversion executable is probably wrong
解决方法:

step1:下载svn

下载地址:http://subversion.apache.org/packages.html

1.9.2版本快速下载地址:https://www.visualsvn.com/files/Apache-Subversion-1.9.2.zip

step2:IDEA菜单栏点击 File->settings->Version control ->Subversion

添加Apache-Subversion-1.9.2 的 svn.exe路径


image.png

3-IDEA运行时,Tomcat端口常被占

解决方法:

  • 1 找到占用1099号端口的进程
    输入netstat -aon | findstr 1099,找到占用1099端口的进程ID:PID

  • 2 将此进程kill掉
    输入taskkill -f -pid PID

4-使用IntelliJ IDEA 操作github仓库时,突然出现下面的错误:

"Could not read from remote repository"

原因分析:

  • 有可能因为长时间没有更新仓库代码,IDEA的SSH过期导致

解决方法:
在 Setting窗口找到git,将ssh executable项设置为native。入下图:

image.png

相关文章

网友评论

      本文标题:【疑难杂症】IDEA Errors汇总

      本文链接:https://www.haomeiwen.com/subject/oltqtqtx.html