解决SpringBoot项目打成的jar包启动很慢
解决的方法很简单,在/etc/hosts文件中把本机hostname加上就行。
linux下输入hostname查看本机的hostname,vi /etc/hosts 在127.0.0.1后面加上本机的hostname即可
再启动jar包速度就正常了
基本网上的答案都是
打开$JAVA_PATH/jre/lib/security/java.security这个文件,找到下面的内容:
securerandom.source=file:/dev/random
替换成
securerandom.source=file:/dev/urandom
这个改完也没多大作用