在运行 spring 引导应用程序时更改连接数据库的密码对应用程序有何影响?

How does changing the password of the connected database affect the application while operating the spring boot application?

我想知道更改与 Spring 引导应用程序关联的数据库的密码是否会影响现有连接。 如果 Hikari 在管理连接时尝试通过定期读取属性来连接,我认为在此过程中可能存在连接错误,对吗?

是的,它确实会影响连接,它会导致类似“建立数据库连接时出错”的问题。