在我的 SpringBoot 应用程序中,我configObject
在实现EnvironmentPostProcessor
.
注入的类在启动时从不同的源读取数据,因为这是应用程序工作所必需的。
但是在启动应用程序时,configObject
它会显示为 Null。
@SpringBootApplication
@EnableEncryptableProperties
@EnableConfigurationProperties
@EnableCaching
@Slf4j
public class SBApplication {
public static void main(String[] args) {
SpringApplication.run(SBApplication.class, args);
}
}
以及调用 Autowired 对象的 AppEnvironmentPostProcessor 类。此类org.springframework.boot.env.EnvironmentPostProcessor
在 spring.factories 中配置。该类在启动时被调用。
@Slf4j
public class AppEnvironmentPostProcessor implements
EnvironmentPostProcessor, Ordered {
@Autowired
KeysConfig keysConfig;
@Override
public void postProcessEnvironment(ConfigurableEnvironment environment,
SpringApplication application) {
// keysConfig is null
String key = keysConfig.getSecretKeyMap().get("key12");
}
}
在 KeysConfig 类中
@Component
public final class KeysConfig {
public Map getSecretKeyMap() {
//Returns key map
}
}
我正在使用 Intellij Ultimate。我该如何调试和解决这个问题?