ava.rmi.server.ExportException: Port already in use: 1099 ,表示1099端口被其他进程占用了。
解决方法:
1. win+R,运行,输入cmd,进入命令提示符
2. 输入netstat -aon | findstr 1099,找到占用1099端口的进程ID:PID
3. 输入taskkill -f -pid PID
4. 重启Tomcat
3.IDEA快捷键
原文地址:https://www.cnblogs.com/qiaoyanan/p/10143924.html
时间: 2024-10-22 11:51:35