我知道构造函数在自动连接变量之前正在调用。但是,不幸的是,我想读取构造函数内部的application.properties值吗? @Component public class DESedeEncryption { private static final String key = "TEST_KEY"; public DESedeEncryption() { system.out.println(key); } } DESedeEncryption encrypted = new DESedeEncryptio…