1、启动问题展示
显示端口号被占用,因为性能问题,idea直接闪退。但是微服务都没有关闭,所以再次打开idea之后启动微服务就发现端口号都被占用了。
Action:
Verify the connector's configuration, identify and stop any process that's listening on port 7001, or configure this application to listen on another port.
2、解决办法
1. 点击idea下面那一栏中的Treminal
2. 然后输入 jps ,按下回车
3. 占用端口的服务都出来了
4. 输入 taskkill /pid 端口号 /F
3、解决示例