环境介绍: 项目使用的是spring-cloud-alibaba-dependencies2023.0.3.2版本、nacos-client2.4.2版本。 情况描述: 引入了jasypt对Nacos的用户名、密码登敏感信息进行隐藏 <img width="551" height="108" alt="Image" src="https://github.com/user-attachments/assets/a2ec2656-5673-4453-9769-c1526606c624" /> <img width="829" height="872" alt="Image" src="https://github.com/user-attachments/assets/e930c55e-c8df-4711-9452-2b79b697e74a" /> 但是运行项目的时候,提示无法找到spring.config.import导入的配置文件 <img width="1724" height="886" alt="Image" src="https://github.com/user-attachments/assets/6ab0eba0-3aae-4833-a3e4-f88f275d10c2" /> nacos的用户名、密码换成明文的是可以正常导入的,所以应该是在jasypt对Nacos的用户名、密码解密之前就用密文的用户名、密码去登录nacos并获取配置文件,所以失败了。 怎么让jasypt先进行解密,然后在用明文的用户名、密码向nacos获取(spring.config.import)配置文件?