欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

解决centos7 下 spring boot security 登陆接口请求 pending很久才返回结果

程序员文章站 2024-03-19 15:36:58
...

项目加入spring security后 部署到cent7的 服务器后 其他接口都能访问,但是出现了访问登陆接口很久,请求一直pending,大概5 6分钟之后才能够返回结果 ,通过日志发现如下问题


o.a.c.util.SessionIdGeneratorBase : Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [148,188] milliseconds
    

通过百度谷歌一番:http://www.jianshu.com/p/30aa8e43a396 这是最佳的解决方案

打开 

$JAVA_HOME/jre/lib/security/java.security

设置 securerandom.source属性 

解决centos7 下 spring boot security 登陆接口请求 pending很久才返回结果

改为


解决centos7 下 spring boot security 登陆接口请求 pending很久才返回结果