tomcat启动成功后,第一次调用request.getSession()返回速度慢
解决办法:
1:修改文件:$JAVA_PATH/jre/lib/security/java.security 中securerandom.source=file:/dev/random 改为securerandom.source=file:/dev/urandom
或
2:在catalina.sh中加入这么一行:-Djava.security.egd=file:/dev/./urandom 即可
转自 https://blog.csdn.net/lsm135/article/details/77801052