SpringBoot启动报:Update your application‘s configuration 服务终止
Failed to bind properties under 'spring.datasource.password' to java.lang.String:
·
场景
当时是在测试Jayspt加密配置文件时,自己搭的一个SpringBoot项目,测试连接数据库 正常返回数据。
在添加Jasypt依赖后 启动项目报:
Description:
Failed to bind properties under 'spring.datasource.password' to java.lang.String:
Reason: Failed to bind properties under 'spring.datasource.password' to java.lang.String
Action:
Update your application's configuration
如图:
当时是自己在Maven仓库中找的最新的版本 3.0.0
解决
检查语法
出问题后 首先检查 Jasypt 语法,没问题。
检查生成密文也没问题
查看pom.xml文件是否引入版本过高
引入Jasypt后启动报错,是不是引入版本过高?
在Maven仓库中找了一个 2.1.2 版本的,启动测试 正常~
总结
遇到 Update your application‘s configuration 检查 pom.xml 的依赖~
更多推荐
已为社区贡献3条内容
所有评论(0)