skip to Main Content

I am using springboot 2.7.4 when I try to connect to Postgres db on azure I met the error

org.postgresql.util.PSQLException: FATAL: FIPS cipher suites are enforced for this >server. Please specify FIPS complying cipher suites in your SSL/TLS settings.

How can we specify the FIPS cipher suites? I see other projects using springboot 2.5.x, they do not seem to have any issues

2

Answers


  1. Chosen as BEST ANSWER

    I fixed the issue by removing custom JRE reference from https://spring.io/guides/topicals/spring-boot-docker/

    It might be because some modules are not added properly when using jlink to create custom jre


  2. Verify your dependencies version which are compatible with spring-boot version 2.7.4.

    https://docs.spring.io/spring-boot/docs/2.7.4/reference/html/dependency-versions.html#appendix.dependency-versions

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search