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路径
3-IDEA运行时,Tomcat端口常被占
解决方法:
1 找到占用1099号端口的进程
输入netstat -aon | findstr 1099,找到占用1099端口的进程ID:PID2 将此进程kill掉
输入taskkill -f -pid PID
4-使用IntelliJ IDEA 操作github仓库时,突然出现下面的错误:
"Could not read from remote repository"
原因分析:
- 有可能因为长时间没有更新仓库代码,IDEA的SSH过期导致
解决方法:
在 Setting窗口找到git,将ssh executable项设置为native。入下图: