Very slow Spring Boot application startup

后端 未结 8 1666

I have a simple Spring Boot application that connects to a PostgreSQL database and serves as a JSON service. Somehow the startup has become very slow, see timings 10:37:10 a

8条回答
  •  渐次进展
    2020-12-23 10:27

    Problem solved using

    properties.setProperty("hibernate.temp.use_jdbc_metadata_defaults", "false");
    

    Thanks all.

提交回复
热议问题