I used to configure -Djava.security.egd=file:/dev/./urandom
in my Dockerfile for Spring Boot applications.
In https://spring.io/guides/gs/spring-boot-docker/ (or GitHub https://github.com/dsyer/gs-spring-boot-docker) a comment was added that this is not required any more for newer versions:
To reduce Tomcat startup time we added a system property pointing to "/dev/urandom" as a source of entropy. This is not necessary with more recent versions of Spring Boot, if you use the "standard" version of Tomcat (or any other web server).
I am looking for any references for this change in Tomcat or Spring Boot repos, and which Spring Boot versions are affected.