IDEA中springboot项目启动慢

环境信息:

IntelliJ IDEA 2019.3 (Ultimate Edition)
macOS 10.15.4
GC: ParNew, ConcurrentMarkSweep
Memory: 1981M
Cores: 8
 

问题描述:

在idea中启动本地的springboot项目测试时,启动缓慢,会在前两行日志到启动图那卡好一会,才会继续运行。

16:50:31.209 [main] INFO org.springframework.core.KotlinDetector - Kotlin reflection implementation not found at runtime, related features won't be available.

IDEA中springboot项目启动慢_第1张图片

也没有其他报错日志,不管是Run还是Debug都慢。当然也能起来,不影响后面的继续测试,但是影响开发体验。

找了好久原因,什么启动内存不够,有断点等等...都未能解决。

 

解决办法:

只需在/private/etc/hosts文件中加入:

# host    域名     主机名
::1 localhost zmbp.local

就这么简单的解决了本人的问题,供大家参考。

 

本地域名解析使用,据说是在IPV6地址存在的时候才有的,相当于是本地主机的环回地址为::1

主机名在mac下可以通过hostname来查看。

IDEA中springboot项目启动慢_第2张图片

 

你可能感兴趣的:(DevTool,mac,idea,springboot,启动慢,hostname)